qt-build-tools/5.15.2/compile_mac_dev.sh

21 lines
290 B
Bash
Raw Normal View History

2020-11-22 22:46:07 +08:00
#!/bin/bash
2021-08-04 23:56:35 +08:00
makej () {
make -j$(sysctl -n hw.ncpu)
}
2021-08-19 03:29:42 +08:00
export PATH=$PATH:$(pwd)/qtbase/bin
2020-11-22 22:46:07 +08:00
cd qtbase
./configure -developer-build -opensource -confirm-license -nomake examples -nomake tests -no-openssl -securetransport
2021-08-04 22:49:16 +08:00
makej
2020-11-22 22:46:07 +08:00
cd ../qttools
qmake
2021-08-04 22:49:16 +08:00
makej
2020-11-22 22:46:07 +08:00
cd ../qtmacextras
qmake
2021-08-04 22:49:16 +08:00
makej