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

set(CMAKE_BUILD_TYPE Debug)

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

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