This commit is contained in:
zhangyazhou 2024-01-04 17:50:34 +08:00
parent 09ec445d30
commit 042fa39472
6 changed files with 7389 additions and 0 deletions

View File

@ -23,6 +23,8 @@ if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
qt_add_executable(QtMd qt_add_executable(QtMd
MANUAL_FINALIZATION MANUAL_FINALIZATION
${PROJECT_SOURCES} ${PROJECT_SOURCES}
main.qml
QtMd.qrc
) )
# Define target properties for Android with Qt 6 as: # Define target properties for Android with Qt 6 as:
# set_property(TARGET QtMd APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR # set_property(TARGET QtMd APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR

7370
MdIcon.js Normal file

File diff suppressed because it is too large Load Diff

5
QtMd.qml Normal file
View File

@ -0,0 +1,5 @@
import QtQuick 2.15
Item {
}

7
QtMd.qrc Normal file
View File

@ -0,0 +1,7 @@
<RCC>
<qresource prefix="/">
<file>main.qml</file>
<file>materialdesignicons-webfont.ttf</file>
<file>MdIcon.js</file>
</qresource>
</RCC>

5
main.qml Normal file
View File

@ -0,0 +1,5 @@
import QtQuick 2.15
Item {
}

Binary file not shown.