1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-03 17:27:47 +00:00
sapphire/src/lobby/CMakeLists.txt

23 lines
574 B
Text
Raw Normal View History

2018-10-25 12:17:40 +02:00
cmake_minimum_required( VERSION 3.0.2 )
cmake_policy( SET CMP0015 NEW )
project( Sapphire )
2017-08-08 13:53:47 +02:00
2018-10-25 12:17:40 +02:00
file( GLOB SERVER_PUBLIC_INCLUDE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*" )
file( GLOB SERVER_SOURCE_FILES "${CMAKE_CURRENT_SOURCE_DIR}*.c*" )
2017-08-08 13:53:47 +02:00
2018-12-13 12:40:42 +01:00
add_executable( lobby ${SERVER_PUBLIC_INCLUDE_FILES} ${SERVER_SOURCE_FILES} )
2017-08-08 13:53:47 +02:00
2018-12-13 12:40:42 +01:00
target_link_libraries( lobby
PRIVATE
common
2018-12-13 12:40:42 +01:00
mysql )
2018-10-26 14:45:10 +02:00
if( UNIX )
2018-12-13 12:40:42 +01:00
target_link_libraries( lobby
PRIVATE
stdc++fs )
2018-10-26 14:45:10 +02:00
endif()
2018-09-22 15:04:18 +02:00
2018-12-13 12:40:42 +01:00
#cotire( lobby )