summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/scene2d
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2022-03-21 18:28:41 +0100
committerKai Koehne <kai.koehne@qt.io>2022-03-22 14:32:43 +0000
commit754fad1ba8d7a5dd2a9462224efd19282ae3a52e (patch)
tree1c7a749941ebd146995e173f7166ef130f289df4 /examples/qt3d/scene2d
parentd157e4d0c47d3dc07204e4a81c4e4ab6b77fd278 (diff)
Remove .prev_CMakeLists.txt
These are leftovers from the qmake conversion. Pick-to: 6.3 Change-Id: Id80e21ed99bd67b1d05586f596a9585526d47e7e Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'examples/qt3d/scene2d')
-rw-r--r--examples/qt3d/scene2d/.prev_CMakeLists.txt60
1 files changed, 0 insertions, 60 deletions
diff --git a/examples/qt3d/scene2d/.prev_CMakeLists.txt b/examples/qt3d/scene2d/.prev_CMakeLists.txt
deleted file mode 100644
index d76ae1356..000000000
--- a/examples/qt3d/scene2d/.prev_CMakeLists.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-# 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)
-
-qt_add_executable(scene2d
- main.cpp
-)
-set_target_properties(scene2d PROPERTIES
- WIN32_EXECUTABLE TRUE
- MACOSX_BUNDLE TRUE
-)
-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}"
-)