2024-07-02 15:22:52 +00:00
|
|
|
message("Building designer components.")
|
|
|
|
|
|
|
|
set(QT_QDS_COMPONENTS_NOWARN on)
|
|
|
|
set(QT_QML_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/qml")
|
|
|
|
|
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
|
|
ds
|
|
|
|
GIT_TAG qds-4.5
|
|
|
|
GIT_REPOSITORY https://code.qt.io/qt-labs/qtquickdesigner-components.git
|
|
|
|
)
|
|
|
|
|
|
|
|
FetchContent_GetProperties(ds)
|
2024-09-24 11:43:29 +00:00
|
|
|
FetchContent_MakeAvailable(ds)
|
2024-07-02 15:22:52 +00:00
|
|
|
|
|
|
|
target_link_libraries(CarRenderingApp PRIVATE
|
|
|
|
QuickStudioComponentsplugin
|
|
|
|
QuickStudioDesignEffectsplugin
|
|
|
|
QuickStudioEffectsplugin
|
|
|
|
QuickStudioApplicationplugin
|
|
|
|
FlowViewplugin
|
|
|
|
QuickStudioLogicHelperplugin
|
|
|
|
QuickStudioMultiTextplugin
|
|
|
|
QuickStudioEventSimulatorplugin
|
|
|
|
QuickStudioEventSystemplugin
|
|
|
|
QuickStudioUtilsplugin
|
|
|
|
)
|