https://github.com/Kitware/CMake
Raw File
Tip revision: 0846bdba097621b8982b73923c18e1b2fb6370eb authored by Bill Hoffman on 16 July 2007, 14:59:29 UTC
ENH: final 2.4.7 commit
Tip revision: 0846bdb
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