STYLE: Nightly Version update
[cmake.git] / Tests / FindPackageTest / CMakeLists.txt
blob6f1a7e5fc056bbcc77382436b64454e2720c92de
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)