mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-10 23:30:03 +02:00
* updated qt test patch * updated desktop file name Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
20 lines
469 B
Diff
20 lines
469 B
Diff
--- a/tests/src/Base/CMakeLists.txt
|
|
+++ b/tests/src/Base/CMakeLists.txt
|
|
@@ -11,4 +11,6 @@ target_sources(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tst_Tools.cpp
|
|
)
|
|
|
|
-setup_qt_test(InventorBuilder)
|
|
+if(BUILD_GUI)
|
|
+ setup_qt_test(InventorBuilder)
|
|
+endif()
|
|
--- a/tests/src/Gui/CMakeLists.txt
|
|
+++ b/tests/src/Gui/CMakeLists.txt
|
|
@@ -6,4 +6,6 @@ target_sources(
|
|
)
|
|
|
|
# Qt tests
|
|
-setup_qt_test(QuantitySpinBox)
|
|
+if(BUILD_GUI)
|
|
+ setup_qt_test(QuantitySpinBox)
|
|
+endif()
|