feat(Api): Add more api endpoints to the scui api (#714)

* feat(Api): Add send message to player database
* feat(cpr): Disabling test build
* feat(Api): Fix max message length
* feat(Api): Download job for creator menu
This commit is contained in:
Bugisoft
2022-12-22 11:49:34 +01:00
committed by GitHub
parent 1dda472562
commit 9d9d438b5d
7 changed files with 110 additions and 10 deletions

View File

@ -1,6 +1,6 @@
include(FetchContent)
set(BUILD_CPR_TESTS OFF CACHE INTERNAL "")
set(BUILD_TESTING_BEFORE ${BUILD_TESTING})
FetchContent_Declare(
cpr
GIT_REPOSITORY https://github.com/libcpr/cpr.git
@ -8,4 +8,6 @@ FetchContent_Declare(
GIT_PROGRESS TRUE
)
message("cpr")
FetchContent_MakeAvailable(cpr)
FetchContent_MakeAvailable(cpr)
set(BUILD_TESTING ${BUILD_TESTING_BEFORE} CACHE INTERNAL "" FORCE)