From 93f1f3ad274de032e1b023eb1262cee1c61181ae Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 2 Oct 2016 15:36:33 -0400 Subject: Initial commit --- CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..348f7cc --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required (VERSION 3.1) +project (manifesto) + +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(manifesto manifesto.cpp) +set_property(TARGET manifesto PROPERTY CXX_STANDARD 11) +set_property(TARGET manifesto PROPERTY CXX_STANDARD_REQUIRED ON) +target_link_libraries(manifesto yaml-cpp twitter++) -- cgit 1.4.1