blob: 8910548b826387c3139bc9d248727f2f2b30b71b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
cmake_minimum_required (VERSION 3.1)
project (furries)
add_subdirectory(vendor/libtwittercpp)
add_subdirectory(vendor/verbly)
find_package(PkgConfig)
pkg_check_modules(yaml-cpp yaml-cpp REQUIRED)
include_directories(
vendor/libtwittercpp/src
vendor/verbly/lib
${yaml-cpp_INCLUDE_DIRS})
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_LIBRARIES})
|