mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
ff631c8156
o Improved CMake support. o Cmake module compatibility (netcdf-config*.cmake.in).
11 lines
382 B
CMake
11 lines
382 B
CMake
# Cmake Package & Configuration file support.
|
|
# Based on code from 'Mastering Cmake'
|
|
|
|
set (PACKAGE_VERSION "@version@")
|
|
if (NOT "${PACKAGE_FIND_VERSION}" VERSION_GREATER "@version@")
|
|
set (PACKAGE_VERSION_COMPATIBLE 1) # Compatible with older.
|
|
if ("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "@version@")
|
|
set(PACKAGE_VERSION_EXACT 1) # exact match for this version.
|
|
endif()
|
|
endif()
|