forked from qt-creator/qt-creator
You now have the option to create projects that you can open in QDS. Task-number: QTCREATORBUG-28721 Change-Id: Ia8f36fd65f2356b9987b027d7b37ac6848ff7e03 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
37 lines
837 B
CMake
37 lines
837 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(transitions VERSION 0.1 LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
find_package(Qt6 6.4 REQUIRED COMPONENTS Quick)
|
|
|
|
qt_standard_project_setup()
|
|
|
|
qt_add_executable(apptransitions
|
|
main.cpp
|
|
)
|
|
|
|
qt_add_qml_module(apptransitions
|
|
URI transitions
|
|
VERSION 1.0
|
|
QML_FILES Main.qml Page.qml
|
|
RESOURCES qt-logo.png
|
|
)
|
|
|
|
set_target_properties(apptransitions PROPERTIES
|
|
MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com
|
|
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
|
|
MACOSX_BUNDLE TRUE
|
|
WIN32_EXECUTABLE TRUE
|
|
)
|
|
|
|
target_link_libraries(apptransitions
|
|
PRIVATE Qt6::Quick
|
|
)
|
|
|
|
install(TARGETS apptransitions
|
|
BUNDLE DESTINATION .
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
|