From fb26c5be267339b9024d6669df09b5c57d15b9ad Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 13 Nov 2022 22:29:05 -0500 Subject: Bot now uses Mastodon instead of Twitter --- CMakeLists.txt | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 94776f1..c77e9fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,13 +1,11 @@ cmake_minimum_required (VERSION 3.1) project (yandere) -set(CMAKE_BUILD_TYPE Debug) - -add_subdirectory(vendor/libtwittercpp) +add_subdirectory(vendor/mastodonpp) add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) -include_directories(vendor/libtwittercpp/src vendor/yaml-cpp/include) +include_directories(vendor/mastodonpp/include vendor/yaml-cpp/include) add_executable(yandere yandere.cpp) -set_property(TARGET yandere PROPERTY CXX_STANDARD 11) +set_property(TARGET yandere PROPERTY CXX_STANDARD 17) set_property(TARGET yandere PROPERTY CXX_STANDARD_REQUIRED ON) -target_link_libraries(yandere yaml-cpp twitter++) +target_link_libraries(yandere yaml-cpp mastodonpp) -- cgit 1.4.1