diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-28 23:13:39 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-28 23:13:39 +0800 |
commit | 99e2e923d0c77b02f3fb4ff648ea916954868606 (patch) | |
tree | ec8e03f6f2cd1ce43990fb4fe6cd631967d0237e /works/teapot/CMakeLists.txt | |
parent | 1cee979f5d36b311a03cc7397a036ba11caf3d42 (diff) | |
download | crupest-99e2e923d0c77b02f3fb4ff648ea916954868606.tar.gz crupest-99e2e923d0c77b02f3fb4ff648ea916954868606.tar.bz2 crupest-99e2e923d0c77b02f3fb4ff648ea916954868606.zip |
chore(store): move everything to store.
Diffstat (limited to 'works/teapot/CMakeLists.txt')
-rw-r--r-- | works/teapot/CMakeLists.txt | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/works/teapot/CMakeLists.txt b/works/teapot/CMakeLists.txt deleted file mode 100644 index 0bbff29..0000000 --- a/works/teapot/CMakeLists.txt +++ /dev/null @@ -1,35 +0,0 @@ -# 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) |