mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
ae5f40696e
When CMake will not generate a test, package, or package_source target, allow projects to create their own targets with these names. Fixes: #16062
6 lines
132 B
CMake
6 lines
132 B
CMake
cmake_policy(SET CMP0037 NEW)
|
|
enable_testing()
|
|
add_custom_target(test)
|
|
add_custom_target(package)
|
|
add_custom_target(package_source)
|