2022-07-05 13:11:56 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2022-08-22 13:39:32 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-07-05 13:11:56 +00:00
|
|
|
|
2021-03-23 08:47:05 +00:00
|
|
|
|
|
|
|
|
2020-05-08 13:06:53 +00:00
|
|
|
#### Inputs
|
|
|
|
|
2021-03-23 08:47:05 +00:00
|
|
|
# input qt3d-assimp
|
|
|
|
set(INPUT_qt3d_assimp "undefined" CACHE STRING "")
|
|
|
|
set_property(CACHE INPUT_qt3d_assimp PROPERTY STRINGS undefined qt system no)
|
2020-05-08 13:06:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### Libraries
|
|
|
|
|
2020-12-14 11:00:31 +00:00
|
|
|
qt_find_package(WrapQt3DAssimp 5 PROVIDED_TARGETS WrapQt3DAssimp::WrapQt3DAssimp MODULE_NAME 3dcore QMAKE_LIB qt3d-assimp)
|
|
|
|
|
|
|
|
qt_config_compile_test("assimp"
|
|
|
|
LABEL ""
|
|
|
|
PROJECT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../config.tests/assimp"
|
|
|
|
# special case begin
|
2021-03-23 08:47:05 +00:00
|
|
|
LIBRARIES WrapQt3DAssimp::WrapQt3DAssimp
|
|
|
|
PACKAGES PACKAGE WrapQt3DAssimp 5
|
2020-12-14 11:00:31 +00:00
|
|
|
# special case end
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-05-08 13:06:53 +00:00
|
|
|
#### Tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### Features
|
|
|
|
|
2020-12-14 11:00:31 +00:00
|
|
|
qt_feature("qt3d-assimp" PUBLIC PRIVATE
|
|
|
|
LABEL "Assimp"
|
|
|
|
)
|
|
|
|
qt_feature_definition("qt3d-assimp" "QT_NO_QT3D_ASSIMP" NEGATE VALUE "1")
|
|
|
|
qt_feature("qt3d-system-assimp" PRIVATE
|
|
|
|
LABEL "System Assimp"
|
|
|
|
CONDITION QT_FEATURE_qt3d_assimp AND TEST_assimp
|
|
|
|
ENABLE INPUT_assimp STREQUAL 'system'
|
|
|
|
DISABLE INPUT_assimp STREQUAL 'qt'
|
|
|
|
)
|
2020-12-11 15:23:43 +00:00
|
|
|
qt_feature("qt3d-render" PUBLIC
|
2020-05-08 13:06:53 +00:00
|
|
|
SECTION "Aspects"
|
|
|
|
LABEL "Render aspect"
|
|
|
|
PURPOSE "Use the 3D Render Aspect library"
|
|
|
|
)
|
2020-12-11 15:23:43 +00:00
|
|
|
qt_feature("qt3d-input" PUBLIC
|
2020-05-08 13:06:53 +00:00
|
|
|
SECTION "Aspects"
|
|
|
|
LABEL "Input aspect"
|
|
|
|
PURPOSE "Use the 3D Input Aspect library"
|
|
|
|
)
|
2020-12-11 15:23:43 +00:00
|
|
|
qt_feature("qt3d-logic" PUBLIC
|
2020-05-08 13:06:53 +00:00
|
|
|
SECTION "Aspects"
|
|
|
|
LABEL "Logic aspect"
|
|
|
|
PURPOSE "Use the 3D Logic Aspect library"
|
|
|
|
)
|
2020-12-11 15:23:43 +00:00
|
|
|
qt_feature("qt3d-extras" PUBLIC
|
2020-05-08 13:06:53 +00:00
|
|
|
SECTION "Aspects"
|
|
|
|
LABEL "Extras aspect"
|
|
|
|
PURPOSE "Use the 3D Extra library"
|
|
|
|
CONDITION QT_FEATURE_qt3d_render AND QT_FEATURE_qt3d_input AND QT_FEATURE_qt3d_logic
|
|
|
|
)
|
2020-12-11 15:23:43 +00:00
|
|
|
qt_feature("qt3d-animation" PUBLIC
|
2020-05-08 13:06:53 +00:00
|
|
|
SECTION "Aspects"
|
|
|
|
LABEL "Animation aspect"
|
|
|
|
PURPOSE "Use the 3D Animation Aspect library"
|
|
|
|
CONDITION QT_FEATURE_qt3d_render
|
|
|
|
)
|
2020-12-14 11:00:31 +00:00
|
|
|
qt_configure_add_summary_section(NAME "Qt 3D")
|
|
|
|
qt_configure_add_summary_entry(ARGS "qt3d-assimp")
|
|
|
|
qt_configure_add_summary_entry(ARGS "qt3d-system-assimp")
|
2021-03-23 08:47:05 +00:00
|
|
|
qt_configure_add_summary_section(NAME "Aspects")
|
|
|
|
qt_configure_add_summary_entry(ARGS "qt3d-render")
|
2020-12-11 15:23:43 +00:00
|
|
|
qt_configure_add_summary_entry(ARGS "qt3d-input")
|
|
|
|
qt_configure_add_summary_entry(ARGS "qt3d-logic")
|
2021-03-23 08:47:05 +00:00
|
|
|
qt_configure_add_summary_entry(ARGS "qt3d-animation")
|
|
|
|
qt_configure_add_summary_entry(ARGS "qt3d-extras")
|
|
|
|
qt_configure_end_summary_section() # end of "Aspects" section
|
|
|
|
qt_configure_end_summary_section() # end of "Qt 3D" section
|