From 51c0f61bde2799d8c1c903d95578b9d05778a22f Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 5 Nov 2016 03:39:00 -0400 Subject: Initial commit --- CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3946a86 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required (VERSION 3.1) +project (owo) + +set(CMAKE_BUILD_TYPE Debug) + +add_subdirectory(vendor/verbly) +add_subdirectory(vendor/libtwittercpp) +add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) + +include_directories(vendor/verbly/lib vendor/libtwittercpp/src vendor/yaml-cpp/include) +add_executable(owo owo.cpp) +set_property(TARGET owo PROPERTY CXX_STANDARD 11) +set_property(TARGET owo PROPERTY CXX_STANDARD_REQUIRED ON) +target_link_libraries(owo verbly twitter++ yaml-cpp) -- cgit 1.4.1