From 759c2857643b5be84238faa6e4c99fe479ca3056 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 4 Aug 2018 23:11:25 -0400 Subject: Removed yaml-cpp submodule --- CMakeLists.txt | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index cbc9e68..8910548 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,10 +3,16 @@ project (furries) add_subdirectory(vendor/libtwittercpp) add_subdirectory(vendor/verbly) -add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) -include_directories(vendor/libtwittercpp/src vendor/verbly/lib vendor/yaml-cpp/include) +find_package(PkgConfig) +pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) + +include_directories( + vendor/libtwittercpp/src + vendor/verbly/lib + ${yaml-cpp_INCLUDE_DIRS}) + add_executable(furries furries.cpp sentence.cpp) set_property(TARGET furries PROPERTY CXX_STANDARD 11) set_property(TARGET furries PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(furries verbly twitter++ yaml-cpp) +target_link_libraries(furries verbly twitter++ ${yaml-cpp_LIBRARIES}) -- cgit 1.4.1