Commit c87882e8 authored by Christian's avatar Christian

added version check

parent bd4301b2
...@@ -197,7 +197,11 @@ if (SPDLOG_INSTALL) ...@@ -197,7 +197,11 @@ if (SPDLOG_INSTALL)
include(CMakePackageConfigHelpers) include(CMakePackageConfigHelpers)
configure_file("${project_config_in}" "${project_config_out}" @ONLY) configure_file("${project_config_in}" "${project_config_out}" @ONLY)
write_basic_package_version_file("${version_config_file}" COMPATIBILITY SameMajorVersion ARCH_INDEPENDENT) if(${CMAKE_VERSION} VERSION_GREATER 3.13)
write_basic_package_version_file("${version_config_file}" COMPATIBILITY SameMajorVersion ARCH_INDEPENDENT)
else()
write_basic_package_version_file("${version_config_file}" COMPATIBILITY SameMajorVersion)
endif()
install(FILES install(FILES
"${project_config_out}" "${project_config_out}"
"${version_config_file}" DESTINATION "${export_dest_dir}") "${version_config_file}" DESTINATION "${export_dest_dir}")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment