netcdf-c/netcdf-config-version.cmake.in
Ward Fisher ff631c8156 Merged latest changes from cmake branch.
o Improved CMake support.
o Cmake module compatibility (netcdf-config*.cmake.in).
2012-11-19 21:43:12 +00:00

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()