mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
The minimum CMake version for Qt6 is 3.16, so all the calls to cmake_minimum_required() are updated here to enforce that minimum. This will avoid any CMake version-related warnings from Qt. Avoid hard-coding Qt5 where the tests could now be using Qt5 or Qt6. Fixes: #22188
11 lines
330 B
CMake
11 lines
330 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(Parallel4)
|
|
include("../AutogenGuiTest.cmake")
|
|
|
|
# Test different values for AUTOGEN_PARALLEL
|
|
include("../Parallel/parallel.cmake")
|
|
|
|
add_executable(parallel4 ${PARALLEL_SRC})
|
|
set_target_properties(parallel4 PROPERTIES AUTOGEN_PARALLEL 4)
|
|
target_link_libraries(parallel4 ${QT_LIBRARIES})
|