From 95b7ae535c0b005466e34096f5ce427046a403d2 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 19 Feb 2017 15:36:40 -0500 Subject: Created bot --- 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..8266a02 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required (VERSION 3.1) +project (father) + +add_subdirectory(vendor/libtwittercpp) +add_subdirectory(vendor/verbly) +add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) + +include_directories(vendor/libtwittercpp/src vendor/yaml-cpp/include vendor/verbly/lib) +add_executable(father father.cpp) +set_property(TARGET father PROPERTY CXX_STANDARD 11) +set_property(TARGET father PROPERTY CXX_STANDARD_REQUIRED ON) +target_link_libraries(father verbly yaml-cpp twitter++) + -- cgit 1.4.1