zerotiertspu/root/CMakeLists.txt
2019-08-30 09:08:39 -07:00

19 lines
445 B
CMake

cmake_minimum_required(VERSION 2.8)
project(zerotier-root)
if(WIN32)
add_definitions(-DNOMINMAX)
endif(WIN32)
add_executable(${PROJECT_NAME} root.cpp)
target_link_libraries(${PROJECT_NAME} zt_core zt_osdep)
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_11)
target_include_directories(${PROJECT_NAME} PRIVATE
${CMAKE_SOURCE_DIR}/node
${CMAKE_SOURCE_DIR}/osdep
${CMAKE_SOURCE_DIR}/ext/json
${CMAKE_SOURCE_DIR}/ext/cpp-httplib
)