font-demo/build.sh
zty199 77a4b4aace Upload project files
Upload dtk-font and qt-font demo project files and build script.
2020-10-23 01:33:51 +08:00

20 lines
385 B
Bash
Executable File

#!/bin/sh
cd $PWD
# 编译 dtk-font
mkdir -p build_dtk && cd build_dtk
/usr/lib/qt5/bin/qmake ../dtk-font/dtk-font.pro -spec linux-g++ CONFIG+=qtquickcompiler && /usr/bin/make qmake_all
make -j4
cd ..
# 编译 qt-font
mkdir -p build_qt && cd build_qt
/usr/lib/qt5/bin/qmake ../qt-font/qt-font.pro -spec linux-g++ CONFIG+=qtquickcompiler && /usr/bin/make qmake_all
make -j4
exit