Merge pull request #1228 from scatter-dev/arch_independent

Added ARCH_INDEPENDENT option
This commit is contained in:
Gabi Melman 2019-09-18 14:55:19 +03:00 committed by GitHub
commit 4bbc8a89a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
# Copyright(c) 2019 spdlog authors
# Distributed under the MIT License (http://opensource.org/licenses/MIT)
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.14)
#---------------------------------------------------------------------------------------
# Start spdlog project
@ -197,7 +197,11 @@ if (SPDLOG_INSTALL)
include(CMakePackageConfigHelpers)
configure_file("${project_config_in}" "${project_config_out}" @ONLY)
write_basic_package_version_file("${version_config_file}" COMPATIBILITY SameMajorVersion)
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
"${project_config_out}"
"${version_config_file}" DESTINATION "${export_dest_dir}")