ZeroTierOne/root/CMakeLists.txt

20 lines
445 B
CMake
Raw Normal View History

2019-08-30 16:08:39 +00:00
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
)