aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/main/CMakeLists.txt
blob: e8df7cbc4dd4a37001f79195028a8bb4afdb646a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
find_package(Boost REQUIRED COMPONENTS filesystem program_options)

option(DEBUG_ASIO "enable debug output for Boost.Asio" OFF)

add_executable(server main.cpp server.cpp session.cpp session_manager.cpp)
target_link_libraries(server PRIVATE common parser)

target_include_directories(server SYSTEM PRIVATE ${Boost_INCLUDE_DIRS})
target_link_libraries(server PRIVATE ${Boost_LIBRARIES})
target_compile_definitions(server PRIVATE BOOST_DATE_TIME_NO_LIB BOOST_REGEX_NO_LIB)

if(DEBUG_ASIO)
    target_compile_definitions(server PRIVATE BOOST_ASIO_ENABLE_HANDLER_TRACKING)
endif()