swh:1:snp:3cba5856b0ddc3feab6c3c2d096d614b02c883ec
Raw File
Tip revision: 86d7c4d786e7c6a13a1c4fa61428d53068017d62 authored by Bill Hoffman on 12 January 2007, 14:53:54 UTC
ENH: break it again
Tip revision: 86d7c4d
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