File: Findflann.cmake

package info (click to toggle)
ompl 1.6.0%2Bds1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 53,516 kB
  • sloc: cpp: 85,252; python: 4,916; sh: 215; xml: 26; javascript: 15; makefile: 11
file content (12 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
# Find FLANN, a Fast Library for Approximate Nearest Neighbors

include(FindPackageHandleStandardArgs)

find_package(PkgConfig)
if(PKGCONFIG_FOUND)
    pkg_check_modules(FLANN flann)
    if(FLANN_LIBRARIES AND NOT FLANN_INCLUDE_DIRS)
        set(FLANN_INCLUDE_DIRS "/usr/include")
    endif()
endif()
find_package_handle_standard_args(flann DEFAULT_MSG FLANN_LIBRARIES FLANN_INCLUDE_DIRS)