Home Database Mysql Tutorial 在MS Visual Studio 2008下编译QGIS1.0.2

在MS Visual Studio 2008下编译QGIS1.0.2

Jun 07, 2016 pm 03:44 PM
studio visual compile

1. 下载并安装所需的第三方组件 1.1 Flex 和 Bison Flex 和 Bison 是安装 Grass 和 QGIS 必须的程序。 * 注意:这两个工具在安装时,安装目录不要有空格,否则在编译 QGIS 时找不到这两个文件。 1.2 PostSQL (略) 1.3 QT 的安装 可以直接选择默认安装。 1.

 

1.       下载并安装所需的第三方组件

1.1   Flex Bison

Flex Bison是安装GrassQGIS必须的程序。

*注意:这两个工具在安装时,安装目录不要有空格,否则在编译QGIS时找不到这两个文件。

1.2   PostSQL(略)

1.3   QT的安装

可以直接选择默认安装。

1.4   Proj.4

1)从Proj.4官方网站上下载最新的版本,解压缩到某个文件夹。

2)使用Visual Studio 2008 command,定位到Proj.4的加压缩文件下,输入下面的命令进行编译:nmake –f makefile.vc MSVC_VER=1500  (对于MSVC_VER值的设定,可以参考nmake.opt文件里的注释)

3)输入以下命令,将生成Proj.4bin, includelib目录,并将相应的文件放到各个目录下:

set PROJ_DIR=c:/lib/proj

 

mkdir %PROJ_DIR%/bin

mkdir %PROJ_DIR%/include

mkdir %PROJ_DIR%/lib

 

copy src/*.dll %PROJ_DIR%/bin

copy src/*.exe %PROJ_DIR%/bin

copy src/*.h %PROJ_DIR%/include

copysrc/*.lib %PROJ_DIR%/lib

 

1.5   GSL

获得GSL源码,直接编译gsl.sln文件(如果是较早版本,直接用VS2008打开即可)

 

1.6   GEOS

1)获得最新版本的GEOS,(本文使用的是geos-3.1.0),使用Visual Studio 2008 command,定位到Proj.4的加压缩文件下,输入下面的命令进行编译:

nmake –f makefile.vc MSVC_VER=1500 

*注意:对于MSVC_VER值的设定,可以参考nmake.opt文件里的注释

(2) GEOS bin, includelib目录,及其相应文件的生成参考Proj.4的生成方法

 

1.7   GDAL的编译

参考CSDNblog的说明。

 

1.8   PostGIS(略未支持)

 

1.9   Expat

下载expat-win32bin-2.0.1.exe(或更高版本),安装。*注意,安装目录名也不应该包含空格。

1.10  CMake

下载最新版本的CMake-win32.exe,安装。

 

2.       CMake-gui编译QGIS程序。

设置Source CodeQGIS源文件的路径,已经要生成编译文件的路径;然后,设置以上所需的工具的LIBINCLUDE路径,点击Configuration后,点击Generate,生成qgis1.0.2.sln文件,编译该文件,即可获得.lib.dll文件。参考QGIS1.0.2安装版的安装后目录信息,制作我们自己的bin, include, libplugins目录(方法是,拷贝QGIS1.0.2安装版include文件夹生成include目录;拷贝我们生成的qgis_core.dllqgis_gui.dll构建Bin目录可以将sqlite3.dll, gdal16.dll一并拷到Bin目录下;到编译生成的src目录下,选择文件搜索工具,输入”*.dll”选出生成providersPlugins,拷贝到plugins目录下)。

注意事项:

1)根据情况选择是否允许以下工具一起编译:

       WITH_BINDINGS-------- Python

       WITH_GRASS-------------Grass

       WITH_INTERNAL_SQLITE3-----是否使用QGIS源文件提供的Sqlite3,在此要取消该项的选择,设置自己下载的最新版本的Sqlite3源文件,编译生成.dll.lib 文件。否则编译生成的QGISlib库对Sqlite3的使用会报错(可能是QGIS源文件的Sqlite3有问题)。

       WITH_POSTGRESQL---Postgresql

(2)GDALLIBRARY要使用gdal_i.lib文件,这是一个动态链接库文件(本人也不太懂),

ProjLIBRARY也应该如此。我在编译时使用的是proj.lib文件,目前还没遇到什么错误,等下次重新编译时我尝试以下。

 

3.       QGIS的使用例子

在使用QGIS时,要注意加上

#define CORE_EXPROT

#define GUI_EXPROT

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

C++ compilation error: undeclared identifier, how to solve it? C++ compilation error: undeclared identifier, how to solve it? Aug 22, 2023 pm 03:34 PM

When programming in C++, we often encounter the problem of undeclared identifiers. This usually occurs when undefined variables, functions, or classes are used, causing the compiler to fail to recognize these identifiers, resulting in compilation errors. This article describes common causes of undeclared identifier problems and how to resolve them. Common Causes Undeclared identifier problems usually arise from the following reasons: Variables, functions, or classes are not declared correctly: You should declare variables, functions, or classes before using them. If the variable is not declared or function

Does Windows 11 provide support for VB6 applications? Does Windows 11 provide support for VB6 applications? May 30, 2023 am 08:31 AM

Windows 11 introduces more macOS-style UI elements. You get a redesigned taskbar with the Start menu in the center. Yes, you can change its position, but by default it will be placed in the center. The Control Center has also received some design tweaks. In the next update, support for Android apps will also come along with redesigned Notepad and Media Player. Although all these features make Windows 11 a nice upgrade over Windows 10, certain doubts are brewing in the minds of users. There is a segment of users and developers who are concerned about whether Windows 11 will support legacy applications and technologies, whether they are lagging behind or not. Since V

How to Fix VCRUNTIME140.dll Missing Error on Windows How to Fix VCRUNTIME140.dll Missing Error on Windows May 04, 2023 am 08:04 AM

The VCRUNTIME140.dllismissing error is a problem with your Visual C++ Redistributable file on Windows. You can use this tutorial to solve the problem. Windows applications and software require DLL files to run - without them, they may stop working entirely. For example, if you see a VCRUNTIME140.dllismissing error, this indicates that your PC is missing this file, preventing the application from launching. This may be due to unsuccessful installation of the application. It can even appear after running Windows updates. Thankfully, you can easily

Why does my Go program take longer to compile? Why does my Go program take longer to compile? Jun 09, 2023 pm 06:00 PM

In recent years, Go language has become the choice of more and more developers. However, compared to other programming languages, the compilation speed of Go language is not fast enough. Many developers will encounter this problem when compiling Go programs: Why does my Go program take longer to compile? This article will explore this issue from several aspects. The compiler architecture of Go language The compiler architecture of Go language adopts a three-stage design, which are front-end, middle layer and back-end. The front-end is responsible for translating the source code into intermediate code in Go language, and the middle layer will

Compilation and decompilation techniques in Java Compilation and decompilation techniques in Java Jun 09, 2023 am 09:43 AM

Java is a very popular programming language that is widely used to develop various types of software. In Java development, compilation and decompilation technology are very important links. Compilation technology is used to convert Java code into executable files, while decompilation technology allows one to convert executable files back into Java code. This article will introduce compilation and decompilation techniques in Java. 1. Compilation technology Compilation is the process of converting high-level language (such as Java) code into machine language. in Java

Why does Linux need to compile source code? Why does Linux need to compile source code? Mar 17, 2023 am 10:21 AM

Reasons: 1. There are many versions of Linux, but each version uses different software or kernel versions, and the environment that the binary package depends on may not be able to run normally, so most software directly provides source code for compilation and installation. 2. Easy to customize to meet different needs. 3. Convenient for operation and maintenance and developer maintenance; source code can be packaged as binary, but packaging this software will require costly extra work, including maintenance, so if it is source code, the software manufacturer will maintain it directly.

4 Methods to fix CONCRT140.dll not found error 4 Methods to fix CONCRT140.dll not found error Apr 25, 2023 am 09:22 AM

So many users have reported that whenever they try to run the application, it throws an error message stating that code execution cannot continue because CONCRT140.dll was not found. When opening Adobe applications, Halo, ForzaHorizon5, etc., you may encounter CONCRT140.dll not found. So this is not an application-specific issue. Without the correct DLLs installed, applications will not work properly because their code depends on code written in these libraries. In this article, we will learn what CONCRT140.dll is and why it is missing, and how we can download it and fix the error. what is

Fix: Microsoft Visual C++ 2015 Redistributable Setup Failed error 0x80240017 Fix: Microsoft Visual C++ 2015 Redistributable Setup Failed error 0x80240017 Apr 18, 2023 pm 01:07 PM

Microsoft Visual C++ has become an integral part of the Windows operating system required to run most common applications. Now, some users have recently complained about issues they encountered while trying to install Visual C++ Redistributable Packages for 2015 or Microsoft Visual Studio Redistributable Packages for 2013. According to these users, the installer stopped midway and displayed "0x80240017 - Unspecified Error". There could be many reasons behind this failure. So don't do this

See all articles