
Our development workflow tooling prevents trailing blank lines from being added, but some such lines remain from before that was enforced. Remove them to make it easier to rename files without triggering enforcement.
10 lines
279 B
CMake
10 lines
279 B
CMake
# This version should never, ever be used.
|
|
set(PACKAGE_VERSION_UNSUITABLE 1)
|
|
set(PACKAGE_VERSION 3.1)
|
|
if("${PACKAGE_FIND_VERSION_MAJOR}" EQUAL 3)
|
|
set(PACKAGE_VERSION_COMPATIBLE 1)
|
|
if("${PACKAGE_FIND_VERSION_MINOR}" EQUAL 1)
|
|
set(PACKAGE_VERSION_EXACT 1)
|
|
endif()
|
|
endif()
|