6ec89bec0a
The Qt CI does not have ninja, but the autotest can be used for manual regression finding. cd qtbase/tests/auto/cmake qmake make check cd build cmake . -DHAVE_NINJA=ON ctest -R FINDTESTDATA Change-Id: Ic3f3748f6ab04e37fa5287c59486e5cd46dcabb4 Reviewed-by: Stephen Kelly <steveire@gmail.com>
12 lines
183 B
CMake
12 lines
183 B
CMake
|
|
cmake_minimum_required(VERSION 2.8.11)
|
|
|
|
project(test_QFINDTESTDATA)
|
|
|
|
find_package(Qt5Test REQUIRED)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
add_subdirectory(tests)
|