about summary refs log tree commit diff stats
path: root/CMakeLists.txt
blob: cbc9e68f84f628b26e87883d4c801c1483e95908 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
cmake_minimum_required (VERSION 3.1)
project (furries)

add_subdirectory(vendor/libtwittercpp)
add_subdirectory(vendor/verbly)
add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL)

include_directories(vendor/libtwittercpp/src vendor/verbly/lib vendor/yaml-cpp/include)
add_executable(furries furries.cpp sentence.cpp)
set_property(TARGET furries PROPERTY CXX_STANDARD 11)
set_property(TARGET furries PROPERTY CXX_STANDARD_REQUIRED ON)
target_link_libraries(furries verbly twitter++ yaml-cpp)