ZeroTierOne/node/CMakeLists.txt
Grant Limberg 0b3b5f6174 Beginning CMake configuration for ZT
Only tested on Windows so far
2019-06-20 16:13:52 -07:00

10 lines
227 B
CMake

cmake_minimum_required (VERSION 2.8)
project(zt_core)
if(WIN32)
add_definitions(-DNOMINMAX)
endif(WIN32)
file(GLOB core_headers *.hpp)
file(GLOB core_src *.cpp)
add_library(${PROJECT_NAME} STATIC ${core_src} ${core_headers})