https://github.com/Kitware/CMake
Raw File
Tip revision: e72b0ba6b1b43424930c385fafb6c2e038acc8ca authored by Bill Hoffman on 04 December 2006, 14:58:27 UTC
ENH: move to actual release
Tip revision: e72b0ba
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