diff options
Diffstat (limited to 'tests/manual')
| -rw-r--r-- | tests/manual/highdpi/pixelgadget/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | tests/manual/highdpi/screengadget/CMakeLists.txt | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/manual/highdpi/pixelgadget/CMakeLists.txt b/tests/manual/highdpi/pixelgadget/CMakeLists.txt index f808786b2a0..80f40fea352 100644 --- a/tests/manual/highdpi/pixelgadget/CMakeLists.txt +++ b/tests/manual/highdpi/pixelgadget/CMakeLists.txt @@ -5,6 +5,12 @@ ## pixelgadget Binary: ##################################################################### +if (NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT) + cmake_minimum_required(VERSION 3.16) + project(pixelgadget LANGUAGES C CXX) + find_package(Qt6BuildInternals COMPONENTS STANDALONE_TEST) +endif() + qt_internal_add_manual_test(pixelgadget GUI SOURCES diff --git a/tests/manual/highdpi/screengadget/CMakeLists.txt b/tests/manual/highdpi/screengadget/CMakeLists.txt index f4a7aad3067..038ff8fc851 100644 --- a/tests/manual/highdpi/screengadget/CMakeLists.txt +++ b/tests/manual/highdpi/screengadget/CMakeLists.txt @@ -5,6 +5,12 @@ ## screengadget Binary: ##################################################################### +if (NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT) + cmake_minimum_required(VERSION 3.16) + project(screengadget LANGUAGES C CXX) + find_package(Qt6BuildInternals COMPONENTS STANDALONE_TEST) +endif() + qt_internal_add_manual_test(screengadget GUI SOURCES |
