avaliente-evs

Results 2 comments of avaliente-evs

Sure, here is a minimal example: CMakeLists.txt ``` cmake_minimum_required(VERSION 3.3) project(Example) include(FetchContent) set(JSON_SCHEMA_VALIDATOR_VERSION 2.3.0) FetchContent_Declare(JSON_SCHEMA_VALIDATOR URL https://github.com/pboettch/json-schema-validator/archive/refs/tags/${JSON_SCHEMA_VALIDATOR_VERSION}.tar.gz) FetchContent_MakeAvailable(JSON_SCHEMA_VALIDATOR) add_library(example main.cpp) target_link_libraries(example PUBLIC nlohmann_json_schema_validator) install(TARGETS example nlohmann_json nlohmann_json_schema_validator EXPORT exampleConfig )...

I am using cmake 3.26.5 on Rocky Linux 9 (RHEL 9)