From aba2c7420c1419e4977ccd0118d6411afb2f690b Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 5 Aug 2018 14:16:02 -0400 Subject: Removed yaml-cpp submodule --- CMakeLists.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index f2fd133..1b1920a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,13 +1,16 @@ cmake_minimum_required (VERSION 3.1) project (snitch) -set(CMAKE_BUILD_TYPE Debug) - add_subdirectory(vendor/libtwittercpp) -add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) -include_directories(vendor/libtwittercpp/src vendor/libtwittercpp/vendor/json/src vendor/libtwittercpp/vendor/curlcpp/include vendor/yaml-cpp/include) +find_package(PkgConfig) +pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) + +include_directories( + vendor/libtwittercpp/src + ${yaml-cpp_INCLUDE_DIRS}) + add_executable(snitch snitch.cpp) set_property(TARGET snitch PROPERTY CXX_STANDARD 11) set_property(TARGET snitch PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(snitch yaml-cpp twitter++ curlcpp curl pthread) +target_link_libraries(snitch ${yaml-cpp_LIBRARIES} twitter++) -- cgit 1.4.1