From b77ab7cb283e64fb8b23f4892115644e84596842 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 23 Feb 2018 09:18:01 -0500 Subject: Created bot --- CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..55a671b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required (VERSION 3.1) +project (lunatic) + +add_subdirectory(vendor/libtwittercpp) + +find_package(PkgConfig) +pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) + +include_directories( + vendor/libtwittercpp/src + ${yaml-cpp_INCLUDE_DIRS}) + +add_executable(lunatic lunatic.cpp) +set_property(TARGET lunatic PROPERTY CXX_STANDARD 11) +set_property(TARGET lunatic PROPERTY CXX_STANDARD_REQUIRED ON) +target_link_libraries(lunatic ${yaml-cpp_LIBRARIES} twitter++) \ No newline at end of file -- cgit 1.4.1