first commit

This commit is contained in:
zhuzihcu
2023-02-24 18:44:29 +08:00
commit 312418aded
21 changed files with 457 additions and 0 deletions

14
src/macos_install.sh Normal file
View File

@ -0,0 +1,14 @@
RUN_TYPE=$1
PRESET_PATH=$2
BUILDER_BIN_PATH=$3
QT_QML_FLUENT_PATH=$4
echo ${RUN_TYPE}
if [ ${RUN_TYPE} = "PRESET" ]; then
cp -r ${PRESET_PATH}/FluentUI.h ${BUILDER_BIN_PATH}
cp -r ${PRESET_PATH}/build-preset/* ${BUILDER_BIN_PATH}
else
rm -rf ${QT_QML_FLUENT_PATH=}
mkdir -pv ${QT_QML_FLUENT_PATH=}
cp -r ${BUILDER_BIN_PATH}/* ${QT_QML_FLUENT_PATH=}
fi