aboutsummaryrefslogtreecommitdiff
path: root/store/works/teapot/CMakeLists.txt
blob: 0bbff2900ed4c16b57d31e2f3e69ad38d3264518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

cmake_minimum_required(VERSION 3.16)
project(crupest-teapot LANGUAGES CXX)

set(CMAKE_AUTOMOC ON)

find_package(Qt6 REQUIRED COMPONENTS Core Gui Quick Quick3D)

qt_add_executable(crupest-teapot
    main.cpp
)

set_target_properties(crupest-teapot PROPERTIES
    WIN32_EXECUTABLE TRUE
    MACOSX_BUNDLE TRUE
)

target_link_libraries(crupest-teapot PUBLIC
    Qt::Core
    Qt::Gui
    Qt::Quick
    Qt::Quick3D
)

qt_add_qml_module(crupest-teapot
    URI Example
    VERSION 1.0
    QML_FILES main.qml
    RESOURCES teapot.mesh
    NO_RESOURCE_TARGET_PATH
)

install(TARGETS crupest-teapot)