From 62de4eb955181b7b00364cb14201a91268aa57b4 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 13 Mar 2018 16:44:43 -0400 Subject: Removed yaml-cpp submodule Project now links against a local installation of yaml-cpp. --- CMakeLists.txt | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index d9b21f5..0eaaa10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,19 +1,23 @@ cmake_minimum_required (VERSION 3.1) project (grunge) -set(CMAKE_EXPORT_COMPILE_COMMANDS ON) - add_subdirectory(vendor/libtwittercpp) add_subdirectory(vendor/verbly) -add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) find_package(PkgConfig) +pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED) -include_directories(${GraphicsMagick_INCLUDE_DIRS} vendor/verbly/lib vendor/libtwittercpp/src vendor/yaml-cpp/include vendor/libtwittercpp/vendor/curlcpp/include) +include_directories( + vendor/libtwittercpp/src + vendor/libtwittercpp/vendor/curlcpp/include + vendor/verbly/lib + ${yaml-cpp_INCLUDE_DIRS} + ${GraphicsMagick_INCLUDE_DIRS}) + link_directories(${GraphicsMagick_LIBRARY_DIRS}) + add_executable(grunge main.cpp grunge.cpp palette.cpp) set_property(TARGET grunge PROPERTY CXX_STANDARD 11) set_property(TARGET grunge PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(grunge ${GraphicsMagick_LIBRARIES} verbly yaml-cpp twitter++) - +target_link_libraries(grunge ${yaml-cpp_LIBRARIES} ${GraphicsMagick_LIBRARIES} verbly twitter++) -- cgit 1.4.1