Massive removale of "QUIET" in find_package calls (except for

FindVTK.cmake, which has a bug). Let's see if that can help us to find out
why we still have problems with demos on MacOS and Windows.
This commit is contained in:
Laurent Rineau 2008-11-19 13:58:43 +00:00
parent f336f4340e
commit 4032eade9a
33 changed files with 72 additions and 72 deletions

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,11 +10,11 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 Core ) find_package(CGAL COMPONENTS Qt3 Core )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -12,13 +12,13 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Core Qt3 ) find_package(CGAL COMPONENTS Core Qt3 )
if ( CGAL_FOUND ) if ( CGAL_FOUND )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET ) find_package(Qt3-patched )
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -12,7 +12,7 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Core ) find_package(CGAL COMPONENTS Core )
if ( CGAL_FOUND ) if ( CGAL_FOUND )

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 Core ) find_package(CGAL COMPONENTS Qt3 Core )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -11,17 +11,17 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt4) find_package(CGAL COMPONENTS Qt4)
include(${CGAL_USE_FILE}) include(${CGAL_USE_FILE})
set( QT_USE_QTXML TRUE ) set( QT_USE_QTXML TRUE )
set( QT_USE_QTMAIN TRUE ) set( QT_USE_QTMAIN TRUE )
set( QT_USE_QTSCRIPT TRUE ) set( QT_USE_QTSCRIPT TRUE )
set( QT_USE_QTOPENGL TRUE ) set( QT_USE_QTOPENGL TRUE )
find_package(Qt4 QUIET) find_package(Qt4)
find_package(OpenGL QUIET) find_package(OpenGL)
find_package(QGLViewer QUIET) find_package(QGLViewer)
if ( CGAL_FOUND AND QT_FOUND AND OPENGL_FOUND AND QGLVIEWER_FOUND ) if ( CGAL_FOUND AND QT_FOUND AND OPENGL_FOUND AND QGLVIEWER_FOUND )

View File

@ -11,11 +11,11 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt4) find_package(CGAL COMPONENTS Qt4)
include(${CGAL_USE_FILE}) include(${CGAL_USE_FILE})
find_package(Qt4 QUIET) find_package(Qt4)
include_directories (BEFORE ../../include) include_directories (BEFORE ../../include)

View File

@ -10,7 +10,7 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt4) find_package(CGAL COMPONENTS Qt4)
include(${CGAL_USE_FILE}) include(${CGAL_USE_FILE})
@ -20,7 +20,7 @@ set( QT_USE_QTMAIN TRUE )
set( QT_USE_QTSCRIPT TRUE ) set( QT_USE_QTSCRIPT TRUE )
set( QT_USE_QTOPENGL TRUE ) set( QT_USE_QTOPENGL TRUE )
find_package(Qt4 QUIET) find_package(Qt4)
include(${QT_USE_FILE}) include(${QT_USE_FILE})
if ( CGAL_FOUND AND QT4_FOUND ) if ( CGAL_FOUND AND QT4_FOUND )

View File

@ -11,7 +11,7 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt4) find_package(CGAL COMPONENTS Qt4)
include(${CGAL_USE_FILE}) include(${CGAL_USE_FILE})
@ -21,7 +21,7 @@ set( QT_USE_QTSCRIPT TRUE )
set( QT_USE_QTOPENGL TRUE ) set( QT_USE_QTOPENGL TRUE )
find_package(Qt4 QUIET) find_package(Qt4)
include_directories (BEFORE ../../include) include_directories (BEFORE ../../include)
include_directories (BEFORE ./include) include_directories (BEFORE ./include)

View File

@ -10,13 +10,13 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
if ( CGAL_FOUND ) if ( CGAL_FOUND )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET ) find_package(Qt3-patched )
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".
@ -34,7 +34,7 @@ if ( CGAL_FOUND )
include_directories (BEFORE include) include_directories (BEFORE include)
# Link with Boost.ProgramOptions (optional) # Link with Boost.ProgramOptions (optional)
find_package(Boost QUIET COMPONENTS program_options) find_package(Boost COMPONENTS program_options)
if(Boost_PROGRAM_OPTIONS_FOUND) if(Boost_PROGRAM_OPTIONS_FOUND)
add_definitions( "-DCGAL_USE_BOOST_PROGRAM_OPTIONS" ) add_definitions( "-DCGAL_USE_BOOST_PROGRAM_OPTIONS" )
link_libraries( ${Boost_PROGRAM_OPTIONS_LIBRARY} ) link_libraries( ${Boost_PROGRAM_OPTIONS_LIBRARY} )

View File

@ -10,11 +10,11 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -12,10 +12,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Core Qt3 ) find_package(CGAL COMPONENTS Core Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET ) find_package(Qt3-patched )
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3) find_package(CGAL COMPONENTS Qt3)
include(${CGAL_USE_FILE}) include(${CGAL_USE_FILE})
find_package(Qt3-patched QUIET ) find_package(Qt3-patched )
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -24,7 +24,7 @@ if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../../../GraphicsView/src/CGALQt4)
endif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../../../GraphicsView/src/CGALQt4) endif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../../../GraphicsView/src/CGALQt4)
# Find CGAL and CGAL Qt4 # Find CGAL and CGAL Qt4
find_package(CGAL QUIET COMPONENTS Qt4) find_package(CGAL COMPONENTS Qt4)
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
# Find Qt4 itself # Find Qt4 itself
@ -32,19 +32,19 @@ set( QT_USE_QTXML TRUE )
set( QT_USE_QTMAIN TRUE ) set( QT_USE_QTMAIN TRUE )
set( QT_USE_QTSCRIPT TRUE ) set( QT_USE_QTSCRIPT TRUE )
set( QT_USE_QTOPENGL TRUE ) set( QT_USE_QTOPENGL TRUE )
find_package(Qt4 QUIET) find_package(Qt4)
# Find OpenGL # Find OpenGL
find_package(OpenGL QUIET) find_package(OpenGL)
# Find QGLViewer # Find QGLViewer
if(QT_FOUND) if(QT_FOUND)
include(${QT_USE_FILE}) include(${QT_USE_FILE})
find_package(QGLViewer QUIET ) find_package(QGLViewer )
endif(QT_FOUND) endif(QT_FOUND)
# Find TAUCS (optionnal) # Find TAUCS (optionnal)
find_package(TAUCS QUIET) find_package(TAUCS)
if(CGAL_Qt4_FOUND AND QT_FOUND AND OPENGL_FOUND AND QGLVIEWER_FOUND) if(CGAL_Qt4_FOUND AND QT_FOUND AND OPENGL_FOUND AND QGLVIEWER_FOUND)

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 Core ) find_package(CGAL COMPONENTS Qt3 Core )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,10 +10,10 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 Core ) find_package(CGAL COMPONENTS Qt3 Core )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".

View File

@ -10,15 +10,15 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".
find_package(OpenGL QUIET) find_package(OpenGL)
if ( CGAL_FOUND AND QT3_FOUND AND OPENGL_FOUND) if ( CGAL_FOUND AND QT3_FOUND AND OPENGL_FOUND)

View File

@ -10,12 +10,12 @@ if ( COMMAND cmake_policy )
cmake_policy( SET CMP0003 NEW ) cmake_policy( SET CMP0003 NEW )
endif() endif()
find_package(CGAL QUIET COMPONENTS Qt3 ) find_package(CGAL COMPONENTS Qt3 )
include( ${CGAL_USE_FILE} ) include( ${CGAL_USE_FILE} )
include_directories( ./include ) include_directories( ./include )
find_package(Qt3-patched QUIET) find_package(Qt3-patched)
# FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so # FindQt3-patched.cmake is FindQt3.cmake patched by CGAL developers, so
# that it can be used together with FindQt4: all its variables are prefixed # that it can be used together with FindQt4: all its variables are prefixed
# by "QT3_" instead of "QT_". # by "QT3_" instead of "QT_".