- Defines Network, StopArea, StopPoints and JourneySections - Loads them from json using the build_from_json method
7 lines
162 B
CMake
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)
|