mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-26 16:11:07 +00:00
14 lines
220 B
CMake
14 lines
220 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project(zt_go_native)
|
|
|
|
set(src
|
|
GoNode.cpp
|
|
)
|
|
|
|
set(headers
|
|
GoNode.h
|
|
)
|
|
|
|
add_library(${PROJECT_NAME} STATIC ${src} ${headers})
|
|
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_11)
|