mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
parent
2f631bb808
commit
33286fdc37
@ -136,8 +136,11 @@ if (NOT_SUBPROJECT)
|
|||||||
#
|
#
|
||||||
# CMake does not provide a direct customization point for this in
|
# CMake does not provide a direct customization point for this in
|
||||||
# `write_basic_package_version_file`, but it can be accomplished
|
# `write_basic_package_version_file`, but it can be accomplished
|
||||||
# indirectly by temporarily undefining `CMAKE_SIZEOF_VOID_P`.
|
# indirectly by temporarily redefining `CMAKE_SIZEOF_VOID_P` to an
|
||||||
|
# empty string. Note that just undefining the variable could be
|
||||||
|
# insufficient in cases where the variable was already in CMake cache
|
||||||
set(CATCH2_CMAKE_SIZEOF_VOID_P ${CMAKE_SIZEOF_VOID_P})
|
set(CATCH2_CMAKE_SIZEOF_VOID_P ${CMAKE_SIZEOF_VOID_P})
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "")
|
||||||
unset(CMAKE_SIZEOF_VOID_P)
|
unset(CMAKE_SIZEOF_VOID_P)
|
||||||
write_basic_package_version_file(
|
write_basic_package_version_file(
|
||||||
"${CMAKE_CURRENT_BINARY_DIR}/Catch2ConfigVersion.cmake"
|
"${CMAKE_CURRENT_BINARY_DIR}/Catch2ConfigVersion.cmake"
|
||||||
|
Loading…
Reference in New Issue
Block a user