swh:1:snp:3cba5856b0ddc3feab6c3c2d096d614b02c883ec
Raw File
Tip revision: 707b3e0809e95aa19e154c36a82208ec58aa2952 authored by Bill Hoffman on 21 January 2008, 17:56:51 UTC
ENH: final 2.4.8
Tip revision: 707b3e0
CMakeLists.txt
PROJECT(FindPackageTest)

# Look for a package that has a find module and may be found.
FIND_PACKAGE(OpenGL QUIET)

# Look for a package that has no find module and will not be found.
FIND_PACKAGE(NotAPackage QUIET)

# Look for a package that has an advanced find module.
FIND_PACKAGE(VTK QUIET)

ADD_EXECUTABLE(FindPackageTest FindPackageTest.cxx)
back to top