summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_generating_cpp_exports/CMakeLists.txt
blob: 7b5666c3f7138de71dcce6532441aa613dc3f212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
cmake_minimum_required(VERSION 3.16)

include(.cmake.conf)

project(TestGeneratingCppExports
        DESCRIPTION "Test of the generating of cpp exports"
        HOMEPAGE_URL "https://qt.io/"
        LANGUAGES CXX C
        VERSION "${QT_REPO_MODULE_VERSION}"
)

find_package(Qt6 COMPONENTS Core BuildInternals Test CONFIG REQUIRED)

qt_build_repo_begin()

add_subdirectory(test_autogenerating_cpp_exports)
add_subdirectory(test_autogenerating_cpp_exports_custom_name)

qt_build_repo_end()