81 lines
2.1 KiB
CMake
81 lines
2.1 KiB
CMake
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
|
|
|
|
include(FetchContent)
|
|
|
|
if (NOT TARGET solanaceae_util)
|
|
FetchContent_Declare(solanaceae_util
|
|
GIT_REPOSITORY https://github.com/Green-Sky/solanaceae_util.git
|
|
GIT_TAG master
|
|
EXCLUDE_FROM_ALL
|
|
)
|
|
FetchContent_MakeAvailable(solanaceae_util)
|
|
endif()
|
|
|
|
if (NOT TARGET solanaceae_contact)
|
|
FetchContent_Declare(solanaceae_contact
|
|
GIT_REPOSITORY https://github.com/Green-Sky/solanaceae_contact.git
|
|
GIT_TAG master
|
|
EXCLUDE_FROM_ALL
|
|
)
|
|
FetchContent_MakeAvailable(solanaceae_contact)
|
|
endif()
|
|
|
|
if (NOT TARGET solanaceae_message3)
|
|
FetchContent_Declare(solanaceae_message3
|
|
GIT_REPOSITORY https://github.com/Green-Sky/solanaceae_message3.git
|
|
GIT_TAG master
|
|
EXCLUDE_FROM_ALL
|
|
)
|
|
FetchContent_MakeAvailable(solanaceae_message3)
|
|
endif()
|
|
|
|
if (NOT TARGET solanaceae_plugin)
|
|
FetchContent_Declare(solanaceae_plugin
|
|
GIT_REPOSITORY https://github.com/Green-Sky/solanaceae_plugin.git
|
|
GIT_TAG master
|
|
EXCLUDE_FROM_ALL
|
|
)
|
|
FetchContent_MakeAvailable(solanaceae_plugin)
|
|
endif()
|
|
|
|
#if (NOT TARGET oatpp)
|
|
#set(OATPP_INSTALL OFF CACHE BOOL "" FORCE)
|
|
#set(OATPP_BUILD_TESTS OFF CACHE BOOL "" FORCE)
|
|
#set(OATPP_LINK_TEST_LIBRARY OFF CACHE BOOL "" FORCE)
|
|
#FetchContent_Declare(oatpp
|
|
#GIT_REPOSITORY https://github.com/oatpp/oatpp.git
|
|
#GIT_TAG master
|
|
#EXCLUDE_FROM_ALL
|
|
#)
|
|
#FetchContent_MakeAvailable(oatpp)
|
|
#endif()
|
|
|
|
if (NOT TARGET httplib::httplib)
|
|
FetchContent_Declare(httplib
|
|
GIT_REPOSITORY https://github.com/yhirose/cpp-httplib.git
|
|
GIT_TAG v0.15.3
|
|
EXCLUDE_FROM_ALL
|
|
)
|
|
FetchContent_MakeAvailable(httplib)
|
|
endif()
|
|
|
|
if (NOT TARGET nlohmann_json::nlohmann_json)
|
|
FetchContent_Declare(json
|
|
URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz
|
|
URL_HASH SHA256=d6c65aca6b1ed68e7a182f4757257b107ae403032760ed6ef121c9d55e81757d
|
|
EXCLUDE_FROM_ALL
|
|
)
|
|
FetchContent_MakeAvailable(json)
|
|
endif()
|
|
|
|
if (NOT TARGET fmt::fmt)
|
|
# waiting for c++26 runtime formatters be like
|
|
FetchContent_Declare(fmt
|
|
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
|
|
GIT_TAG 10.2.1
|
|
EXCLUDE_FROM_ALL
|
|
)
|
|
FetchContent_MakeAvailable(fmt)
|
|
endif()
|
|
|