more instructions

This commit is contained in:
kleuter 2016-03-23 17:49:25 +01:00
parent 1b52b8e2c1
commit 0ab39f02e4
5 changed files with 137 additions and 0 deletions

View File

@ -0,0 +1,48 @@
1. устанавливаем xcode 4.6.dmg + command_line_tools_lion_xcode462_cltools_10_76938260a
2. tar -xvf qt-everywhere-opensource-src-5.5.0.tar.gz
3. Компиляция
cd qtbase
./configure -opensource -no-openssl -no-securetransport -nomake examples -nomake tests -platform macx-clang-32
make
sudo make install
4.
nano ~/.profile
"
PATH=/usr/local/Qt-5.5.1/bin:$PATH
export PATH
"
После этого надо закрыть консоль и начать новую сессию
5. cd ../qttools
qmake
make
sudo make install
6. cd ../qtmacextras
qmake
make
sudo make install
7. Устанавливаем доки
cd ../qtbase
make docs
cd ../qttools
make docs
cd ../qtmacextras
make docs
sudo cp -f -r ../qtbase/doc /usr/local/Qt-5.5.1/
8. Создаем ZIP файл
cd /usr/local
zip -r ~/Desktop/qt5.5.1_mac.zip Qt-5.5.1/*
Установка
- повторяем пункт 1, command line tools ставим в зависимости от операционки разработки
- Распаковываем
- повторяем пункт 4

4
5.6.0/cleanup.bat Normal file
View File

@ -0,0 +1,4 @@
del *.obj /s /f
del *.ilk /s /f
del *.pch /s /f
del Makefile* /s /f

View File

@ -0,0 +1,53 @@
1. устанавливаем xcode 4.6.dmg + command_line_tools_lion_xcode462_cltools_10_76938260a
2. tar -xvf qt-everywhere-opensource-src-5.5.0.tar.gz
3. Компиляция
cd qtbase
./configure -opensource -no-openssl -no-securetransport -nomake examples -nomake tests -platform macx-clang-32
make
sudo make install
4.
nano ~/.profile
"
PATH=/usr/local/Qt-5.6.0/bin:$PATH
export PATH
"
После этого надо закрыть консоль и начать новую сессию
5. cd ../qtdeclarative
qmake
make
sudo make install
6. cd ../qttools
qmake
make
sudo make install
7. cd ../qtmacextras
qmake
make
sudo make install
8. Устанавливаем доки
cd ../qtbase
make docs
cd ../qttools
make docs
cd ../qtmacextras
make docs
sudo cp -f -r ../qtbase/doc /usr/local/Qt-5.6.0/
9. Создаем ZIP файл
cd /usr/local
zip -r ~/Desktop/qt5.6.0_mac.zip Qt-5.6.0/*
Установка
- повторяем пункт 1, command line tools ставим в зависимости от операционки разработки
- Распаковываем
- повторяем пункт 4

29
5.6.0/compile_win.txt Normal file
View File

@ -0,0 +1,29 @@
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 ..\qtdeclarative
qmake
nmake
6. cd ..\qttools
qmake
nmake
7. cd ..\qtwinextras
qmake
nmake
8. cd ..\qtbase
nmake docs
cd ..\qtwinextras
nmake docs
cd ..\qttools
nmake docs
cd ..\qtdeclarative
nmake docs
9. ..\cleanup.bat

3
5.6.0/qt5vars.cmd Normal file
View File

@ -0,0 +1,3 @@
%comspec% /k ""C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat"" x86
set PATH=c:\qt\qtbase\bin;c:\qt\gnuwin32\bin;%PATH%
set QMAKESPEC=win32-msvc2013