mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 21:58:50 -05:00
c4b4d8b3a6
Fixes: #14983, #16561
20 lines
523 B
CMake
20 lines
523 B
CMake
|
|
cmake_policy(SET CMP0083 NEW)
|
|
|
|
add_executable (pie_on main.cpp)
|
|
set_property(TARGET pie_on PROPERTY POSITION_INDEPENDENT_CODE ON)
|
|
|
|
add_executable (pie_off main.cpp)
|
|
set_property(TARGET pie_off PROPERTY POSITION_INDEPENDENT_CODE OFF)
|
|
|
|
|
|
# generate file holding paths to executables
|
|
file (GENERATE OUTPUT "${CMAKE_BINARY_DIR}/$<CONFIG>/PIE_config.cmake"
|
|
CONTENT
|
|
[==[
|
|
include ("${RunCMake_TEST_SOURCE_DIR}/PIE_validator.cmake")
|
|
|
|
set (pie_on "$<TARGET_FILE:pie_on>")
|
|
set (pie_off "$<TARGET_FILE:pie_off>")
|
|
]==])
|