diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2022-11-16 13:15:04 -0500 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2022-11-16 13:15:04 -0500 |
| commit | 3784947541d4eb47834e10aafd2d7d0f2f07efc3 (patch) | |
| tree | 79fb768a5ad852b76a6781a71013ec88003022d6 /CMakeLists.txt | |
| parent | 63b02e0c2a276575e13810a5ac8c7e7ebeee2ed9 (diff) | |
| download | yandere-3784947541d4eb47834e10aafd2d7d0f2f07efc3.tar.gz yandere-3784947541d4eb47834e10aafd2d7d0f2f07efc3.tar.bz2 yandere-3784947541d4eb47834e10aafd2d7d0f2f07efc3.zip | |
Bot posts every 2 hours now.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 16 |
1 files changed, 12 insertions, 4 deletions
| diff --git a/CMakeLists.txt b/CMakeLists.txt index c77e9fa..944d769 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -1,11 +1,19 @@ | |||
| 1 | cmake_minimum_required (VERSION 3.1) | 1 | cmake_minimum_required (VERSION 3.1) |
| 2 | project (yandere) | 2 | project (yandere) |
| 3 | 3 | ||
| 4 | add_subdirectory(vendor/mastodonpp) | 4 | find_package(PkgConfig) |
| 5 | add_subdirectory(vendor/yaml-cpp EXCLUDE_FROM_ALL) | 5 | pkg_check_modules(yaml-cpp yaml-cpp REQUIRED) |
| 6 | pkg_check_modules(mastodonpp mastodonpp REQUIRED) | ||
| 7 | |||
| 8 | include_directories( | ||
| 9 | ${mastodonpp_INCLUDE_DIRS} | ||
| 10 | ${yaml-cpp_INCLUDE_DIRS}) | ||
| 11 | |||
| 12 | link_directories( | ||
| 13 | ${mastodonpp_LIBRARY_DIRS} | ||
| 14 | ${yaml-cpp_LIBRARY_DIRS}) | ||
| 6 | 15 | ||
| 7 | include_directories(vendor/mastodonpp/include vendor/yaml-cpp/include) | ||
| 8 | add_executable(yandere yandere.cpp) | 16 | add_executable(yandere yandere.cpp) |
| 9 | set_property(TARGET yandere PROPERTY CXX_STANDARD 17) | 17 | set_property(TARGET yandere PROPERTY CXX_STANDARD 17) |
| 10 | set_property(TARGET yandere PROPERTY CXX_STANDARD_REQUIRED ON) | 18 | set_property(TARGET yandere PROPERTY CXX_STANDARD_REQUIRED ON) |
| 11 | target_link_libraries(yandere yaml-cpp mastodonpp) | 19 | target_link_libraries(yandere ${mastodonpp_LIBRARIES} ${yaml-cpp_LIBRARIES}) |
