From adc3efe6a834ae04194ff3637aaadb71880b5c21 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 19 Dec 2017 12:35:51 -0500 Subject: Removed yaml-cpp submodule Project now links against a local installation of yaml-cpp. --- CMakeLists.txt | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fc053d..837eb8d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,13 +5,19 @@ set(CMAKE_BUILD_TYPE Debug) find_package(PkgConfig) pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED) +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/libtwittercpp/vendor/curlcpp/include ${GraphicsMagick_INCLUDE_DIRS} vendor/yaml-cpp/include) +include_directories( + vendor/verbly/lib + vendor/libtwittercpp/src + vendor/libtwittercpp/vendor/curlcpp/include + ${GraphicsMagick_INCLUDE_DIRS} + ${yaml-cpp_INCLUDE_DIRS}) + add_executable(advice main.cpp advice.cpp sentence.cpp) set_property(TARGET advice PROPERTY CXX_STANDARD 11) set_property(TARGET advice PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(advice verbly twitter++ ${GraphicsMagick_LIBRARIES} yaml-cpp) +target_link_libraries(advice verbly twitter++ ${GraphicsMagick_LIBRARIES} ${yaml-cpp_LIBRARIES}) -- cgit 1.4.1