blob: 8d26d306052b64eb472f4f0ef832785747a9f4d6 (
plain)
1
2
3
4
5
6
7
8
9
|
include(PrintVersions.cmake)
# Test leading zeros motivating this policy.
project(DateVersion VERSION 2019.07.06 LANGUAGES NONE)
print_versions(DateVersion)
# Overflow version component in OLD behavior.
project(LongVersion VERSION 4294967297 #[[ uint32_max + 2 ]] LANGUAGES NONE)
print_versions(LongVersion)
|