Skip to content

Commit 9475850

Browse files
committedFeb 6, 2017
* update INSTALL
* osgeo4w: search qt5 first and use pyrcc5.bat
1 parent 64748aa commit 9475850

File tree

3 files changed

+21
-16
lines changed

3 files changed

+21
-16
lines changed
 

‎cmake/PyQtMacros.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ ENDMACRO(PYQT_WRAP_UI)
5555
IF(NOT PYRCC_PROGRAM)
5656
IF (MSVC)
5757
FIND_PROGRAM(PYRCC_PROGRAM
58-
NAMES ${PYRCC_PROG_NAME}.exe
58+
NAMES ${PYRCC_PROG_NAME}.bat
5959
PATHS $ENV{LIB_DIR}/bin
6060
)
6161
ELSE(MSVC)

‎doc/msvc.t2t

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,14 @@ build QGIS.
1212

1313
The free (as in free beer) Express Edition installer is available under:
1414

15-
http://download.microsoft.com/download/c/d/7/cd7d4dfb-5290-4cc7-9f85-ab9e3c9af796/vc_web.exe
16-
17-
You also need the Windows SDK for Windows 7 and .NET Framework 4:
18-
19-
http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/winsdk_web.exe
20-
15+
https://download.my.visualstudio.com/db/en_visual_studio_express_2015_for_windows_10_x86_x64_web_installer_6878617.exe?t=9437eae7-7ff2-462a-a349-312fd069ef2d&e=1486459960&h=1fa3414e467f267c795c01bc38b9472d&su=1
2116

2217
===Other tools and dependencies===
2318

2419
Download and install following packages:
2520

2621
|| Tool | Website |
27-
| CMake | http://www.cmake.org/files/v3.0/cmake-3.0.2-win32-x86.exe |
22+
| CMake | https://cmake.org/files/v3.7/cmake-3.7.2-win64-x64.msi |
2823
| GNU flex, GNU bison and GIT | http://cygwin.com/setup-x86.exe (32bit) or http://cygwin.com/setup-x86_64.exe (64bit) |
2924
| OSGeo4W | http://download.osgeo.org/osgeo4w/osgeo4w-setup-x86.exe (32bit) or http://download.osgeo.org/osgeo4w/osgeo4w-setup-x86_64.exe (64bit) |
3025

@@ -46,13 +41,23 @@ and from OSGeo4W (select //Advanced Installation//):
4641
- grass
4742
- gsl-devel
4843
- iconv
49-
- pyqt4
50-
- qt4-devel
51-
- qwt5-devel-qt4
52-
- sip
53-
- spatialite
5444
- libspatialindex-devel
55-
- python-qscintilla
45+
- pyqt5
46+
- python3-devel
47+
- python3-qscintilla
48+
- qca-qt5-devel
49+
- qca-qt5-libs
50+
- qscintilla-qt5
51+
- qt5-devel
52+
- qt5-libs-debug
53+
- qtwebkit-qt5-devel
54+
- qtwebkit-qt5-libs-debug
55+
- qwt-devel-qt5
56+
- sip-qt5
57+
- spatialite
58+
-
59+
60+
5661

5762
This will also select packages the above packages depend on.
5863

‎ms-windows/osgeo4w/package-nightly.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ touch %SRCDIR%\CMakeLists.txt
152152
echo CMAKE: %DATE% %TIME%
153153
if errorlevel 1 goto error
154154

155-
set LIB=%LIB%;%OSGEO4W_ROOT%\lib
156-
set INCLUDE=%INCLUDE%;%OSGEO4W_ROOT%\include
155+
set LIB=%LIB%;%OSGEO4W_ROOT%\apps\Qt5\lib;%OSGEO4W_ROOT%\lib
156+
set INCLUDE=%INCLUDE%;%OSGEO4W_ROOT%\apps\Qt5\include;%OSGEO4W_ROOT%\include
157157

158158
cmake -G Ninja ^
159159
-D CMAKE_CXX_COMPILER="%CMAKE_COMPILER_PATH:\=/%/cl.exe" ^

0 commit comments

Comments
 (0)
Please sign in to comment.