mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 09:59:20 -05:00
10 lines
232 B
CMake
10 lines
232 B
CMake
|
|
add_library(testTarget empty.cpp)
|
|
target_include_directories(testTarget INTERFACE "${CMAKE_INSTALL_PREFIX}/dir")
|
|
|
|
install(TARGETS testTarget EXPORT testTargets
|
|
DESTINATION lib
|
|
)
|
|
|
|
install(EXPORT testTargets DESTINATION lib/cmake)
|