summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/scene2d/.prev_CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/scene2d/.prev_CMakeLists.txt')
-rw-r--r--examples/qt3d/scene2d/.prev_CMakeLists.txt56
1 files changed, 56 insertions, 0 deletions
diff --git a/examples/qt3d/scene2d/.prev_CMakeLists.txt b/examples/qt3d/scene2d/.prev_CMakeLists.txt
new file mode 100644
index 000000000..0336ab91f
--- /dev/null
+++ b/examples/qt3d/scene2d/.prev_CMakeLists.txt
@@ -0,0 +1,56 @@
+# Generated from scene2d.pro.
+
+cmake_minimum_required(VERSION 3.14)
+project(scene2d LANGUAGES CXX)
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+
+set(CMAKE_AUTOMOC ON)
+set(CMAKE_AUTORCC ON)
+set(CMAKE_AUTOUIC ON)
+
+if(NOT DEFINED INSTALL_EXAMPLESDIR)
+ set(INSTALL_EXAMPLESDIR "examples")
+endif()
+
+set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}")
+
+find_package(Qt6 COMPONENTS Core)
+find_package(Qt6 COMPONENTS Gui)
+find_package(Qt6 COMPONENTS Qml)
+find_package(Qt6 COMPONENTS Quick)
+find_package(Qt6 COMPONENTS 3DQuick)
+find_package(Qt6 COMPONENTS 3DQuickExtras)
+
+add_qt_gui_executable(scene2d
+ main.cpp
+)
+target_link_libraries(scene2d PUBLIC
+ Qt::3DQuick
+ Qt::3DQuickExtras
+ Qt::Core
+ Qt::Gui
+ Qt::Qml
+ Qt::Quick
+)
+
+
+# Resources:
+set(scene2d_resource_files
+ "LogoControls.qml"
+ "Qt_logo.obj"
+ "main.qml"
+)
+
+qt6_add_resources(scene2d "scene2d"
+ PREFIX
+ "/"
+ FILES
+ ${scene2d_resource_files}
+)
+
+install(TARGETS scene2d
+ RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
+ BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
+ LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
+)