forked from metin2/server
26 lines
493 B
CMake
26 lines
493 B
CMake
cmake_minimum_required(VERSION 3.8)
|
|
|
|
project(libthecore CXX)
|
|
|
|
# Find source files
|
|
file(GLOB SOURCES
|
|
"src/*.cpp"
|
|
"include/*.h"
|
|
)
|
|
|
|
# Include header files
|
|
include_directories("include")
|
|
|
|
# Create shared library
|
|
add_library(${PROJECT_NAME} STATIC ${SOURCES})
|
|
|
|
# Find and link dependencies
|
|
|
|
# fmt
|
|
find_package(fmt CONFIG REQUIRED)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE fmt::fmt)
|
|
|
|
# spdlog
|
|
find_package(spdlog CONFIG REQUIRED)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE spdlog::spdlog)
|