diff options
author | Cara Salter <cara@devcara.com> | 2023-03-30 15:09:52 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2023-03-30 15:09:52 -0400 |
commit | 8233fc4bcffc82907e82b31072cb8129aa200ae5 (patch) | |
tree | bb9551e287fb632cbb3dfb070ffa228351ed4129 /CMakeLists.txt | |
parent | 527b7ab2df126bb2f480999049ed05b057a6ef83 (diff) | |
download | 142bot-8233fc4bcffc82907e82b31072cb8129aa200ae5.tar.gz 142bot-8233fc4bcffc82907e82b31072cb8129aa200ae5.zip |
reactions module
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b2e67c..40edb5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,8 @@ FetchContent_Declare(dpp FetchContent_MakeAvailable(clog dpp) +include(cmake/FindPCRE.cmake) + find_package(fmt) string(ASCII 27 Esc) @@ -24,7 +26,7 @@ aux_source_directory("src" coresrc) add_executable(142bot ${coresrc}) include_directories("include") -target_link_libraries(142bot clog dpp fmt spdlog) +target_link_libraries(142bot clog dpp fmt spdlog pcre) set (modules_dir "modules") file(GLOB subdirlist ${modules_dir}/*) |