You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
752 B
13 lines
752 B
IF(NOT "${VersionTestA_FIND_VERSION}" STREQUAL "1")
|
|
MESSAGE(SEND_ERROR "VersionTestA_FIND_VERSION=${VersionTestA_FIND_VERSION} is not 1")
|
|
ENDIF(NOT "${VersionTestA_FIND_VERSION}" STREQUAL "1")
|
|
IF(NOT "${VersionTestA_FIND_VERSION_MAJOR}" STREQUAL "1")
|
|
MESSAGE(SEND_ERROR "VersionTestA_FIND_VERSION_MAJOR=${VersionTestA_FIND_VERSION_MAJOR} is not 1")
|
|
ENDIF(NOT "${VersionTestA_FIND_VERSION_MAJOR}" STREQUAL "1")
|
|
IF(DEFINED VersionTestA_FIND_VERSION_MINOR)
|
|
MESSAGE(SEND_ERROR "VersionTestA_FIND_VERSION_MINOR should not be defined")
|
|
ENDIF(DEFINED VersionTestA_FIND_VERSION_MINOR)
|
|
IF(DEFINED VersionTestA_FIND_VERSION_PATCH)
|
|
MESSAGE(SEND_ERROR "VersionTestA_FIND_VERSION_PATCH should not be defined")
|
|
ENDIF(DEFINED VersionTestA_FIND_VERSION_PATCH)
|