File: PCLConfigVersion.cmake.in

package info (click to toggle)
pcl 1.15.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 143,232 kB
  • sloc: cpp: 521,978; xml: 28,792; ansic: 8,208; python: 334; lisp: 93; sh: 49; makefile: 29
file content (13 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Check whether the requested PACKAGE_FIND_VERSION is compatible

set(PACKAGE_VERSION @PCL_VERSION@)

# Check whether the requested PACKAGE_FIND_VERSION is compatible
if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}")
  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()