From ca6f051c611a378e772994fd83e92bc50c87d46b Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 3 Feb 2023 10:52:42 -0500 Subject: Middle green is now like a captcha refs #12 --- CMakeLists.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 56082ac..a67107b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,6 +6,7 @@ set(CMAKE_BUILD_TYPE Debug) find_package(PkgConfig) pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) pkg_check_modules(dpp dpp REQUIRED) +pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED) add_subdirectory(vendor/curlcpp) add_subdirectory(vendor/verbly) @@ -15,13 +16,15 @@ include_directories( vendor/verbly/lib ${yaml-cpp_INCLUDE_DIRS} ${CURLCPP_SOURCE_DIR}/include - vendor/json) + vendor/json + ${GraphicsMagick_INCLUDE_DIRS}) link_directories( ${dpp_LIBRARY_DIRS} - ${yaml-cpp_LIBRARY_DIRS}) + ${yaml-cpp_LIBRARY_DIRS} + ${GraphicsMagick_LIBRARY_DIRS}) add_executable(lingo lingo.cpp imagenet.cpp) set_property(TARGET lingo PROPERTY CXX_STANDARD 17) set_property(TARGET lingo PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(lingo verbly ${dpp_LIBRARIES} ${yaml-cpp_LIBRARIES} curlcpp curl) +target_link_libraries(lingo verbly ${dpp_LIBRARIES} ${yaml-cpp_LIBRARIES} curlcpp curl ${GraphicsMagick_LIBRARIES}) -- cgit 1.4.1