diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2018-09-28 15:30:22 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2018-11-08 13:58:57 (GMT) |
commit | 023188ffb48cc35ebab7cabbafefcd6dd31b750d (patch) | |
tree | 088a0aea32a5e1a514cbb61b6bc5a007ad6a827b /Tests/RunCMake/PositionIndependentCode/Genex1.cmake | |
parent | 17e98e00c449ebdceac980c0ce65c800030605db (diff) | |
download | CMake-023188ffb48cc35ebab7cabbafefcd6dd31b750d.zip CMake-023188ffb48cc35ebab7cabbafefcd6dd31b750d.tar.gz CMake-023188ffb48cc35ebab7cabbafefcd6dd31b750d.tar.bz2 |
INTERFACE_POSITION_INDEPENDENT_CODE: add generator expressions support
Fixes: #16532
Diffstat (limited to 'Tests/RunCMake/PositionIndependentCode/Genex1.cmake')
-rw-r--r-- | Tests/RunCMake/PositionIndependentCode/Genex1.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/RunCMake/PositionIndependentCode/Genex1.cmake b/Tests/RunCMake/PositionIndependentCode/Genex1.cmake new file mode 100644 index 0000000..a91be3e --- /dev/null +++ b/Tests/RunCMake/PositionIndependentCode/Genex1.cmake @@ -0,0 +1,9 @@ + +add_library(genex_pic UNKNOWN IMPORTED) +# PIC is ON if sibling target is a library, OFF if it is an executable +set_property(TARGET genex_pic PROPERTY INTERFACE_POSITION_INDEPENDENT_CODE $<NOT:$<STREQUAL:$<TARGET_PROPERTY:TYPE>,EXECUTABLE>>) + + +add_library(conflict1 STATIC main.cpp) +set_property(TARGET conflict1 PROPERTY POSITION_INDEPENDENT_CODE OFF) +target_link_libraries(conflict1 PRIVATE genex_pic) |