From afbe0bd9678619fe1b022075615229c875c0b98a Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 19 Sep 2017 09:59:17 -0400 Subject: Created bot --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..8800bbc --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required (VERSION 3.1) +project (pokepronouns) + +add_subdirectory(vendor/libtwittercpp) +add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) + +include_directories(vendor/libtwittercpp/src vendor/yaml-cpp/include) +add_executable(pokepronouns pokepronouns.cpp) +set_property(TARGET pokepronouns PROPERTY CXX_STANDARD 11) +set_property(TARGET pokepronouns PROPERTY CXX_STANDARD_REQUIRED ON) +target_link_libraries(pokepronouns yaml-cpp twitter++) -- cgit 1.4.1