mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 17:56:26 +00:00
6da65b3907
Use the same rules for paths in source and binary dirs in installed INTERFACE_SOURCES as are used for INTERFACE_INCLUDE_DIRECTORIES.
16 lines
472 B
CMake
16 lines
472 B
CMake
|
|
enable_language(CXX)
|
|
|
|
add_library(testTarget "${CMAKE_CURRENT_SOURCE_DIR}/empty.cpp")
|
|
if (TEST_PROP STREQUAL INCLUDE_DIRECTORIES)
|
|
set_property(TARGET testTarget PROPERTY INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_BINARY_DIR}/foo")
|
|
else()
|
|
set_property(TARGET testTarget PROPERTY INTERFACE_SOURCES "${CMAKE_CURRENT_BINARY_DIR}/empty.cpp")
|
|
endif()
|
|
|
|
install(TARGETS testTarget EXPORT testTargets
|
|
DESTINATION lib
|
|
)
|
|
|
|
install(EXPORT testTargets DESTINATION lib/cmake)
|