Trenesis/ext/json/CMakeLists.txt
Paul Breugnot 61aec3d856 Internal train network structure
- Defines Network, StopArea, StopPoints and JourneySections
- Loads them from json using the build_from_json method
2026-01-03 14:34:00 +01:00

7 lines
162 B
CMake

include(FetchContent)
FetchContent_Declare(
json
URL https://github.com/nlohmann/json/releases/download/v3.12.0/json.tar.xz
)
FetchContent_MakeAvailable(json)