aboutsummaryrefslogtreecommitdiff
path: root/works/teapot/CMakeLists.txt
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-02-12 15:55:21 +0800
committerYuqian Yang <crupest@crupest.life>2025-02-12 16:17:30 +0800
commitf1bbbed7d1d568053cad3e203dcfb71177972329 (patch)
tree4068acd33f4e632a1224e140d5f510bb9520154e /works/teapot/CMakeLists.txt
parent0b5b206613f5580f85c5cd83ce03c5a637247346 (diff)
parentcb0e3a0fb536284bdf366b0bdca2f8f0bfdcf6d1 (diff)
downloadcrupest-f1bbbed7d1d568053cad3e203dcfb71177972329.tar.gz
crupest-f1bbbed7d1d568053cad3e203dcfb71177972329.tar.bz2
crupest-f1bbbed7d1d568053cad3e203dcfb71177972329.zip
import(teapot): IMPORT crupest/teapot COMPLETE.
Diffstat (limited to 'works/teapot/CMakeLists.txt')
-rw-r--r--works/teapot/CMakeLists.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/works/teapot/CMakeLists.txt b/works/teapot/CMakeLists.txt
new file mode 100644
index 0000000..0bbff29
--- /dev/null
+++ b/works/teapot/CMakeLists.txt
@@ -0,0 +1,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)