font-demo/build.sh

20 lines
385 B
Bash
Raw Normal View History

#!/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