From 932872ad17dd0fe86bd8c30f8165e4d0fc0cd5ee Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 25 Jan 2018 12:12:50 -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 adb9ba1..e444b73 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,13 +3,19 @@ project (difference) add_subdirectory(vendor/libtwittercpp) add_subdirectory(vendor/verbly) -add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) find_package(PkgConfig) pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED) +pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) + +include_directories( + vendor/libtwittercpp/src + vendor/libtwittercpp/vendor/curlcpp/include + vendor/verbly/lib + ${GraphicsMagick_INCLUDE_DIRS} + ${yaml-cpp_INCLUDE_DIRS}) -include_directories(vendor/libtwittercpp/src vendor/libtwittercpp/vendor/curlcpp/include vendor/verbly/lib ${GraphicsMagick_INCLUDE_DIRS} vendor/yaml-cpp/include) add_executable(difference difference.cpp main.cpp) set_property(TARGET difference PROPERTY CXX_STANDARD 11) set_property(TARGET difference PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(difference verbly yaml-cpp twitter++ ${GraphicsMagick_LIBRARIES}) +target_link_libraries(difference verbly ${yaml-cpp_LIBRARIES} twitter++ ${GraphicsMagick_LIBRARIES}) -- cgit 1.4.1