Files
MINWebServer/CMakeLists.txt
2020-12-11 10:49:13 +08:00

11 lines
330 B
CMake

cmake_minimum_required(VERSION 3.5)
project(MINWebServer)
set(CMAKE_CXX_STANDARD 14)
add_compile_options(-DBOOST_LOG_DYN_LINK)
add_subdirectory(MINWebServer)
add_executable(demo test_minweb_server_library.cpp)
target_link_libraries(demo ndn-cxx boost_system pthread boost_thread boost_log_setup boost_log MINWebServer jsoncpp)