mirror of
https://github.com/BugisoftRSG/SCAPI.git
synced 2024-12-23 04:57:26 +08:00
10 lines
276 B
CMake
10 lines
276 B
CMake
|
include(FetchContent)
|
||
|
|
||
|
FetchContent_Declare(
|
||
|
json
|
||
|
GIT_REPOSITORY https://github.com/ArthurSonzogni/nlohmann_json_cmake_fetchcontent.git
|
||
|
GIT_TAG 67e6070f9d9a44b4dec79ebe6b591f39d2285593
|
||
|
GIT_PROGRESS TRUE
|
||
|
)
|
||
|
message("json")
|
||
|
FetchContent_MakeAvailable(json)
|