mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-20 05:28:01 +00:00
20 lines
445 B
CMake
20 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
|
||
|
)
|