From b668325558e75d97a6e99629c0a76e29235b8ac1 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Tue, 15 Nov 2022 14:12:26 -0500 Subject: Bot posts to Mastodon now instead of Twitter --- CMakeLists.txt | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index cc3fccd..d8ec06e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,21 +1,25 @@ cmake_minimum_required (VERSION 3.1) project (infinite) -add_subdirectory(vendor/libtwittercpp) add_subdirectory(vendor/verbly) find_package(PkgConfig) pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED) pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) +pkg_check_modules(mastodonpp mastodonpp REQUIRED) include_directories( ${GraphicsMagick_INCLUDE_DIRS} vendor/verbly/lib - vendor/libtwittercpp/src + vendor/json + ${mastodonpp_INCLUDE_DIRS} ${yaml-cpp_INCLUDE_DIRS}) -link_directories(${GraphicsMagick_LIBRARY_DIRS}) +link_directories( + ${GraphicsMagick_LIBRARY_DIRS} + ${mastodonpp_LIBRARY_DIRS}) + add_executable(infinite infinite.cpp color.cpp fractal.cpp matrix3x3.cpp vector3d.cpp tinyxml2.cpp triangle.cpp) -set_property(TARGET infinite PROPERTY CXX_STANDARD 11) +set_property(TARGET infinite PROPERTY CXX_STANDARD 17) set_property(TARGET infinite PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(infinite ${GraphicsMagick_LIBRARIES} verbly ${yaml-cpp_LIBRARIES} twitter++) +target_link_libraries(infinite ${GraphicsMagick_LIBRARIES} verbly ${yaml-cpp_LIBRARIES} ${mastodonpp_LIBRARIES}) -- cgit 1.4.1