1 PROJECT(FindPackageTest)
3 # Look for a package that has a find module and may be found.
4 FIND_PACKAGE(OpenGL QUIET)
6 # Look for a package that has no find module and will not be found.
7 FIND_PACKAGE(NotAPackage QUIET)
9 # Look for a package that has an advanced find module.
10 FIND_PACKAGE(VTK QUIET)
12 ADD_EXECUTABLE(FindPackageTest FindPackageTest.cxx)