mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
72e7c45e98
Since 3.19, CMake generates a deprecation warning when using a minimum version less than 2.8.12. This eliminates those warnings generated during tests, which are typically hidden from the user and developer but are being generated nonetheless.
6 lines
187 B
CMake
6 lines
187 B
CMake
cmake_minimum_required(VERSION 2.8.12)
|
|
project(CPackTestAllGenerators)
|
|
add_subdirectory(../CTestTest/SmallAndFast SmallAndFast)
|
|
install(FILES RunCPack.cmake DESTINATION .)
|
|
include(CPack)
|