https://github.com/Kitware/CMake
Raw File
Tip revision: 9bbfbd54ba04e07b0bf2eb8bb1056bca53d639c5 authored by Brad King on 13 December 2018, 11:44:30 UTC
CMake 3.13.2
Tip revision: 9bbfbd5
FailCopyFileABI-override.cmake
# Change the executable suffix that try_compile will use for
# COPY_FILE but not inside the test project.  This forces failure.
get_property(in_try_compile GLOBAL PROPERTY IN_TRY_COMPILE)
if(NOT in_try_compile)
  set(CMAKE_EXECUTABLE_SUFFIX .missing)
endif()
back to top