From cfaeab1445bf9d5654b1eb5945144887ee0c3836 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 19 Jun 2018 19:20:50 -0400 Subject: Removed yaml-cpp submodule --- CMakeLists.txt | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index add6b55..39038a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,13 +1,18 @@ cmake_minimum_required (VERSION 3.1) project (support) +find_package(PkgConfig) +pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) + 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) +include_directories( + vendor/verbly/lib + vendor/libtwittercpp/src + ${yaml-cpp_INCLUDE_DIRS}) + add_executable(support sentence.cpp support.cpp) set_property(TARGET support PROPERTY CXX_STANDARD 11) set_property(TARGET support PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(support verbly yaml-cpp twitter++) - +target_link_libraries(support verbly twitter++ ${yaml-cpp_LIBRARIES}) -- cgit 1.4.1