mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
9 lines
199 B
CMake
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)
|