Files
cmake/Tests/RunCMake/CpsExportImportInstall/TestTool.cmake
T
2026-07-22 10:45:59 -04:00

9 lines
199 B
CMake

project(TestTool C)
set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}/../install")
add_executable(tool tool.c)
install(TARGETS tool EXPORT tool)
install(PACKAGE_INFO tool DESTINATION cps EXPORT tool)