qt-build-tools/5.15.7/compile_mac_dev.sh

21 lines
290 B
Bash
Raw Normal View History

2021-05-26 22:15:29 +02:00
#!/bin/bash
2021-08-04 17:56:35 +02:00
makej () {
make -j$(sysctl -n hw.ncpu)
}
2021-08-18 21:29:42 +02:00
export PATH=$PATH:$(pwd)/qtbase/bin
2021-05-26 22:15:29 +02:00
cd qtbase
./configure -developer-build -opensource -confirm-license -nomake examples -nomake tests -no-openssl -securetransport
2021-08-04 16:49:16 +02:00
makej
2021-05-26 22:15:29 +02:00
cd ../qttools
qmake
2021-08-04 16:49:16 +02:00
makej
2021-05-26 22:15:29 +02:00
cd ../qtmacextras
qmake
2021-08-04 16:49:16 +02:00
makej