将 GDAL 纳入 MSVS 2008 C++项目

发布于 2024-11-28 15:20:47 字数 289 浏览 3 评论 0 原文

我一直在 python 中试验 GDAL,并在将其用于地形分析方面取得了一些巨大的成功。我的公司希望了解 GDAL 是否/如何在 Visual Studio 中使用,因为它是他们的主要平台。

我已按照此处下的说明下载并安装了 GDAL v1.8从源代码构建”我是 MSVS 新手,不确定如何包含必要的标头以在新项目中使用 GDAL 库。

我如何包含这些库?非常感谢您的帮助!

I've been experimenting with GDAL in python and have had some great success in it's use for terrain analysis. My company wants to see if/how GDAL can be used in Visual Studio, as it is their primary platform.

I've downloaded and installed GDAL v1.8 in accordance with the instructions found here under "Building from Source" I'm new to MSVS and not sure how to include the necessary headers to utilize the GDAL libraries in a new project.

How do I include the libraries? Your help is much appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

护你周全 2024-12-05 15:20:47

如果您询问如何在新的 Visual Studio 项目中指定 GDAL 包含路径,则可以在“C/C++ > 常规 > 附加包含目录"。

如果有任何要链接的库,那么您可以在“链接器 > 输入 > 附加依赖项”。

这两个设置都可以在项目的属性页面中找到。

If you are asking how to specify the GDAL include path in new Visual Studio projects, then you can do so under "C/C++ > General > Additional Include Directories".

Should there be any libraries to link to, then you can specify these under "Linker > Input > Additional Dependencies".

Both of these settings can be found in your project's properties page.

只是我以为 2024-12-05 15:20:47

成功构建 GDAL 后,您需要三个项目设置(在 Properties 下):

  1. Configuration Properties -> 设置 GDAL 包含目录的路径C/C++ -> 常规 -> 其他包含目录
  2. 配置属性 -> 设置 lib 目录的路径(其中 gdal_i.lib 位于)。 C/C++ > > 链接器 > 常规 > 其他库目录
  3. gdal_i.lib添加到配置属性 -> C/C++ > > 链接器 > 输入> 其他依赖项

然后,您可以在 C++ 代码中使用 GDAL,如 GDAL API 中所述教程

After you successfully build GDAL you need three project settings (under Properties):

  1. Set the path to the GDAL include directory at Configuration Properties -> C/C++ -> General -> Additional Include Directories
  2. Set the path to your lib directory (where gdal_i.lib is located) at Configuration Properties -> C/C++ > Linker > General > Additional Library Directories
  3. Add gdal_i.lib to Configuration Properties -> C/C++ > Linker > Input > Additional Dependencies

You can then use GDAL in your C++ code as described in the GDAL API tutorial.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文