mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 12:07:46 +08:00
9a1a75b675
- Move cmake files to dedicated cmake folder - Move scattered python files to `scripts/` folder - Update CMakeLists.txt to reflect changes * feat(scripts): add README to folder
13 lines
308 B
CMake
13 lines
308 B
CMake
include(FetchContent)
|
|
|
|
set(JSON_MultipleHeaders OFF)
|
|
|
|
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)
|