qt-build-tools/5.15.2/compile_mac_dev.sh

21 lines
290 B
Bash
Raw Normal View History

2020-11-22 15:46:07 +01: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
2020-11-22 15:46:07 +01: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
2020-11-22 15:46:07 +01:00
cd ../qttools
qmake
2021-08-04 16:49:16 +02:00
makej
2020-11-22 15:46:07 +01:00
cd ../qtmacextras
qmake
2021-08-04 16:49:16 +02:00
makej