summaryrefslogtreecommitdiffstats
path: root/tests/CMakeLists.txt
blob: 82da3e7b36b5e96a828ecb051c43f53f8be70aab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# special case begin
if(NOT TARGET Qt::Test)
    cmake_minimum_required(VERSION 3.14.0)
    project(QtBaseTests C CXX ASM)
    find_package(Qt5 REQUIRED COMPONENTS BuildInternals Core Test)
    find_package(Qt5 COMPONENTS DBus Gui OpenGL Widgets Xml)
    qt_set_up_standalone_tests_build()

    # Find a few packages that are usually found in configure.cmake,
    # because a few tests link directly against those libraries.
    qt_find_package(WrapDBus1 PROVIDED_TARGETS dbus-1)
endif()
# special case end

qt_build_tests()