2024-02-22 10:27:40 +00:00
|
|
|
#*================================================================================================*#
|
|
|
|
#| |#
|
|
|
|
#| /$$$$$$$ /$$ /$$ /$$ /$$ |#
|
|
|
|
#| | $$__ $$|__/ | $$ /$ | $$| $$ |#
|
|
|
|
#| | $$ \ $$ /$$ /$$$$$$ | $$ /$$$| $$| $$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ |#
|
|
|
|
#| | $$$$$$$ | $$ /$$__ $$ | $$/$$ $$ $$| $$__ $$ /$$__ $$ /$$__ $$ /$$__ $$ |#
|
|
|
|
#| | $$__ $$| $$| $$ \ $$ | $$$$_ $$$$| $$ \ $$| $$ \ $$| $$ \ $$| $$ \ $$ |#
|
|
|
|
#| | $$ \ $$| $$| $$ | $$ | $$$/ \ $$$| $$ | $$| $$ | $$| $$ | $$| $$ | $$ |#
|
|
|
|
#| | $$$$$$$/| $$| $$$$$$$ | $$/ \ $$| $$ | $$| $$$$$$/| $$$$$$/| $$$$$$$/ |#
|
|
|
|
#| |_______/ |__/ \____ $$ |__/ \__/|__/ |__/ \______/ \______/ | $$____/ |#
|
|
|
|
#| /$$ \ $$ | $$ |#
|
|
|
|
#| | $$$$$$/ | $$ |#
|
|
|
|
#| \______/ |__/ |#
|
|
|
|
#| |#
|
|
|
|
#| DESCRIPTION: |#
|
|
|
|
#| ------------ |#
|
|
|
|
#| |#
|
|
|
|
#| Config that handles package versioning. |#
|
|
|
|
#| |#
|
|
|
|
#| -------------------------------------------------------------------------------------------- |#
|
|
|
|
#| Copyright (c) 2023, High Performance Computing Center - University of Stuttgart |#
|
|
|
|
#| |#
|
|
|
|
#| Redistribution and use in source and binary forms, with or without modification, are |#
|
|
|
|
#| permitted provided that the following conditions are met: |#
|
|
|
|
#| |#
|
|
|
|
#| (1) Redistributions of source code must retain the above copyright notice, this list of |#
|
|
|
|
#| conditions and the following disclaimer. |#
|
|
|
|
#| |#
|
|
|
|
#| (2) Redistributions in binary form must reproduce the above copyright notice, this list |#
|
|
|
|
#| of conditions and the following disclaimer in the documentation and/or other |#
|
|
|
|
#| materials provided with the distribution. |#
|
|
|
|
#| |#
|
|
|
|
#| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS |#
|
|
|
|
#| OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |#
|
|
|
|
#| MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |#
|
|
|
|
#| COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |#
|
|
|
|
#| EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |#
|
|
|
|
#| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |#
|
|
|
|
#| HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |#
|
|
|
|
#| TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, |#
|
|
|
|
#| EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |#
|
|
|
|
#| |#
|
|
|
|
#*================================================================================================*#
|
2024-01-22 14:28:51 +00:00
|
|
|
set(PACKAGE_VERSION_MAJOR @BWC_VERSION_MAJOR@)
|
|
|
|
set(PACKAGE_VERSION_MINOR @BWC_VERSION_MINOR@)
|
|
|
|
set(PACKAGE_VERSION_PATCH @BWC_VERSION_PATCH@)
|
|
|
|
|
|
|
|
set(PACKAGE_VERSION @BWC_VERSION@)
|
|
|
|
|
|
|
|
# Check whether the requested PACKAGE_FIND_VERSION is compatible
|
|
|
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION OR
|
|
|
|
PACKAGE_VERSION_MAJOR GREATER PACKAGE_FIND_VERSION_MAJOR)
|
|
|
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
|
|
else()
|
|
|
|
set(PACKAGE_VERSION_COMPATIBLE TRUE)
|
|
|
|
if(PACKAGE_VERSION VERSION_EQUAL PACKAGE_FIND_VERSION)
|
|
|
|
set(PACKAGE_VERSION_EXACT TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|