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

set(CMAKE_BUILD_TYPE Debug)

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

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