forked from metin2/server
24 lines
511 B
CMake
24 lines
511 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(libsql 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 dependencies
|
|
find_package(libmysql REQUIRED)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE ${MYSQL_LIBRARIES})
|
|
|
|
find_package(Boost REQUIRED)
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE ${Boost_LIBRARIES})
|