diff --git a/5.6.2/compile_mac.sh b/5.6.2/compile_mac.sh new file mode 100644 index 0000000..54212dd --- /dev/null +++ b/5.6.2/compile_mac.sh @@ -0,0 +1,37 @@ +#!/bin/bash + +export PATH=$PATH:/usr/local/Qt-5.6.2/bin + +cd qtbase +./configure -opensource -no-openssl -no-securetransport -nomake examples -nomake tests -platform macx-clang-32 +make +echo 12345 | sudo -S sudo make install + +cd ../qtdeclarative +qmake +make +echo 12345 | sudo -S sudo make install + +cd ../qttools +qmake +make +echo 12345 | sudo -S sudo make install + +cd ../qtmacextras +qmake +make +echo 12345 | sudo -S sudo make install + +# make docs + +cd ../qtbase +make docs +cd ../qttools +make docs +cd ../qtmacextras +make docs + +echo 12345 | sudo -S cp -f -r ../qtbase/doc /usr/local/Qt-5.6.2/ + +cd /usr/local +zip -r ~/Desktop/qt5.6.2_mac.zip Qt-5.6.2/* \ No newline at end of file diff --git a/5.6.2/compile_win.txt b/5.6.2/compile_win.txt new file mode 100644 index 0000000..ace7811 --- /dev/null +++ b/5.6.2/compile_win.txt @@ -0,0 +1,17 @@ +1. Копируем все файлы и папки из данного каталога в C:\qt +2. qtbase\configure.bat - коментируем "if not exist %QTSRC%\.gitignore goto sconf" +3. Запускаем qt5vars.cmd +5. cd qtbase + configure -opensource -opengl desktop -mp -nomake tests -nomake examples -target xp + nmake + +6. cd ..\qttools + qmake + nmake + +7. cd ..\qtbase + nmake docs + cd ..\qttools + nmake docs + +9. ..\cleanup.bat \ No newline at end of file