mirror of https://github.com/CppCon/CppCon2014.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
336 B
CMake
11 lines
336 B
CMake
|
11 years ago
|
cmake_minimum_required(VERSION 3.0.0)
|
||
|
|
project(hairpoll)
|
||
|
|
|
||
|
|
add_library(hairpoll SHARED hairpoll.cpp)
|
||
|
|
target_compile_options(hairpoll PRIVATE -std=c++1y)
|
||
|
|
target_compile_options(hairpoll PRIVATE -fvisibility=hidden)
|
||
|
|
|
||
|
|
add_executable(poller poller.cpp)
|
||
|
|
target_compile_options(poller PRIVATE -std=c++1y)
|
||
|
|
target_link_libraries(poller hairpoll)
|