mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
When CMake will not generate a test, package, or package_source target, allow projects to create their own targets with these names. Fixes: #16062
5 lines
115 B
CMake
5 lines
115 B
CMake
cmake_policy(SET CMP0037 NEW)
|
|
add_custom_target(test)
|
|
add_custom_target(package)
|
|
add_custom_target(package_source)
|