mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-19 20:15:32 -04:00

The JSON output code will be rewritten to use rapidjson, which will allow us to add more stuff without having to worry if the resulting text has the correct formatting. This adds around 20 KB to the compiled binary.
11 lines
469 B
CMake
Vendored
11 lines
469 B
CMake
Vendored
SET(PACKAGE_VERSION "@LIB_VERSION_STRING@")
|
|
|
|
IF (PACKAGE_FIND_VERSION VERSION_EQUAL PACKAGE_VERSION)
|
|
SET(PACKAGE_VERSION_EXACT "true")
|
|
ENDIF (PACKAGE_FIND_VERSION VERSION_EQUAL PACKAGE_VERSION)
|
|
IF (NOT PACKAGE_FIND_VERSION VERSION_GREATER PACKAGE_VERSION)
|
|
SET(PACKAGE_VERSION_COMPATIBLE "true")
|
|
ELSE (NOT PACKAGE_FIND_VERSION VERSION_GREATER PACKAGE_VERSION)
|
|
SET(PACKAGE_VERSION_UNSUITABLE "true")
|
|
ENDIF (NOT PACKAGE_FIND_VERSION VERSION_GREATER PACKAGE_VERSION)
|