mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 17:03:43 +02:00
18 lines
No EOL
306 B
CMake
18 lines
No EOL
306 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(zt_service_io_core)
|
|
|
|
set(src
|
|
GoGlue.cpp
|
|
)
|
|
|
|
set(headers
|
|
GoGlue.h
|
|
)
|
|
|
|
add_library(${PROJECT_NAME} STATIC ${src} ${headers})
|
|
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_11)
|
|
target_include_directories(
|
|
${PROJECT_NAME}
|
|
PUBLIC
|
|
${CMAKE_BINARY_DIR}/core
|
|
) |