Skip to content
Snippets Groups Projects
Commit 24abde8d authored by Heiko Thiel's avatar Heiko Thiel
Browse files

Changes all REQUIRED QUIET in find_package calls to REQUIRED.

REQUIRED and QUIET are mutually exclusive, so their combination makes no sense.
parent 1263d32e
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ if (VTK_BUILD_QT_DESIGNER_PLUGIN)
if (Qt5_VERSION VERSION_LESS "5.5.0")
set(qt_component Designer)
endif ()
find_package(Qt5 COMPONENTS ${qt_component} REQUIRED QUIET)
find_package(Qt5 COMPONENTS ${qt_component} REQUIRED)
qt5_wrap_cpp(PluginMocSrcs ${PluginMocHeaders} TARGET QVTKWidgetPlugin)
# add QVTK plugin from sources
......
......@@ -26,7 +26,7 @@ if(NOT VTK_LEGACY_REMOVE)
endif()
endif()
find_package(Qt5 COMPONENTS Widgets REQUIRED QUIET)
find_package(Qt5 COMPONENTS Widgets REQUIRED)
vtk_test_cxx_executable(vtkGUISupportQtCxxTests tests
QTestApp.cxx)
......
......@@ -3,7 +3,7 @@ vtk_add_test_cxx(vtkGUISupportQtOpenGLCxxTests tests
TestQVTKWidget2.cxx,NO_DATA
)
find_package(Qt5 COMPONENTS Core Gui Widgets REQUIRED QUIET)
find_package(Qt5 COMPONENTS Core Gui Widgets REQUIRED)
qt5_wrap_cpp(moc_srcs QTestMainWindow.h)
vtk_test_cxx_executable(vtkGUISupportQtOpenGLCxxTests tests
QTestMainWindow.cxx
......
......@@ -3,7 +3,7 @@ vtk_add_test_cxx(vtkGUISupportQtSQLCxxTests tests
TestQtSQLDatabase.cxx
)
find_package(Qt5 COMPONENTS Widgets REQUIRED QUIET)
find_package(Qt5 COMPONENTS Widgets REQUIRED)
vtk_test_cxx_executable(vtkGUISupportQtSQLCxxTests tests)
target_link_libraries(vtkGUISupportQtSQLCxxTests
......
......@@ -11,7 +11,7 @@ vtk_add_test_cxx(vtkInfovisBoostGraphAlgorithmsCxxTests tests
)
vtk_test_cxx_executable(vtkInfovisBoostGraphAlgorithmsCxxTests tests)
find_package(Boost REQUIRED QUIET)
find_package(Boost REQUIRED)
target_link_libraries(vtkInfovisBoostGraphAlgorithmsCxxTests
PRIVATE
Boost::boost)
# TODO: Make FindGLUT use imported targets.
find_package(GLUT REQUIRED QUIET)
find_package(GLUT REQUIRED)
include_directories(${GLUT_INCLUDE_DIR})
vtk_add_test_cxx(vtkRenderingExternalCxxTests tests
......
find_package( OptiX REQUIRED QUIET )
find_package( OptiX REQUIRED )
# TODO: Use CMake's built-in Cuda support instead.
find_package( CUDA 4.0 REQUIRED QUIET )
find_package( CUDA 4.0 REQUIRED )
include_directories(
"${OptiX_INCLUDE}"
......
find_package(Java REQUIRED QUIET COMPONENTS Runtime Development)
find_package(Java REQUIRED COMPONENTS Runtime Development)
set(java_simple_test_names
ConcurrencyGC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment