Merge pull request #2947 from nlohmann/issue2946

Skip some tests if JSON_Install is not set
pull/2954/head
Niels Lohmann 2021-08-18 20:06:44 +02:00 committed by GitHub
commit 5a04042cad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -104,8 +104,12 @@ endif()
# Test the generated build configs
#############################################################################
add_subdirectory(cmake_import)
add_subdirectory(cmake_import_minver)
# these tests depend on the generated file nlohmann_jsonConfig.cmake
if (JSON_Install)
add_subdirectory(cmake_import)
add_subdirectory(cmake_import_minver)
endif()
add_subdirectory(cmake_add_subdirectory)
add_subdirectory(cmake_fetch_content)
add_subdirectory(cmake_target_include_directories)