From 9f8deb7570d238867d5445166aa6cc927d8c20b0 Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Fri, 10 Dec 2021 12:16:14 -0500 Subject: [PATCH] make all exampel following the same naming scheme --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 71bb763..8a010a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,11 +80,11 @@ if (JSON_VALIDATOR_BUILD_EXAMPLES) add_executable(json-schema-validate app/json-schema-validate.cpp) target_link_libraries(json-schema-validate nlohmann_json_schema_validator) - add_executable(readme-json-schema app/readme.cpp) - target_link_libraries(readme-json-schema nlohmann_json_schema_validator) + add_executable(json-schema-readme app/readme.cpp) + target_link_libraries(json-schema-readme nlohmann_json_schema_validator) - add_executable(format-json-schema app/format.cpp) - target_link_libraries(format-json-schema nlohmann_json_schema_validator) + add_executable(json-schema-format app/format.cpp) + target_link_libraries(json-schema-format nlohmann_json_schema_validator) install(TARGETS json-schema-validate DESTINATION bin) endif()