aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/server/main/CMakeLists.txt
blob: eefb9690024eb84d13d15273378e2cb44ab79ca5 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                          
                                                                                    



                                                                                 

                                               
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()

install(TARGETS server RUNTIME DESTINATION bin)