2003-07-24 11:33:06 -04:00
|
|
|
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.
|
2007-08-08 13:05:27 -04:00
|
|
|
FIND_PACKAGE(NotAPackage QUIET)
|
2003-07-24 11:33:06 -04:00
|
|
|
|
|
|
|
# Look for a package that has an advanced find module.
|
|
|
|
FIND_PACKAGE(VTK QUIET)
|
|
|
|
|
|
|
|
ADD_EXECUTABLE(FindPackageTest FindPackageTest.cxx)
|