我是靠谱客的博主 简单嚓茶,最近开发中收集的这篇文章主要介绍omnet++安装 osgEarth步骤详解(ubuntu20.04),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  1. 首先安装Gi
#
sudo apt-get install git
  1. 安装vcpkg
$ sudo git clone https://github.com/microsoft/vcpkg
$ ./vcpkg/bootstrap-vcpkg.sh
  1. 安装 osgEarth
./vcpkg/vcpkg install osgearth:x64-linux

4.构建osgEarth
(1)配置依赖

./vcpkg/vcpkg install osg:x64-windows gdal:x64-linux curl:x64-linux

(2)配置完整依赖

./vcpkg/vcpkg install sqlite3:x64-linux protobuf:x64-linux geos:x64-linux blend2d:x64-linux libwebp:x64-linux basisu:x64-linux draco:x64-linux libzip:x64-linux

(3)克隆存储库

git clone --recurse-submodules https://github.com/gwaldron/osgearth.git osgearth
mkdir build

(4)配置 CMake

cmake -S osgearth -B build -G "Visual Studio 15 2017 Linux" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DWIN32_USE_MP=ON -DCMAKE_INSTALL_PREFIX=[installroot] -DCMAKE_TOOLCHAIN_FILE=[vcpkgroot]scriptsbuildsystemsvcpkg.cmake

(5) 构建和安装 osgEarth

cmake --build build --target INSTALL --config RelWithDebInfo

(6)设置运行时环境

set PATH=%PATH%;c:vcpkginstalledx64-linuxbin
set PATH=%PATH%;c:vcpkginstalledlinuxtoolsosg
set PATH=%PATH%;[installroot]

最后

以上就是简单嚓茶为你收集整理的omnet++安装 osgEarth步骤详解(ubuntu20.04)的全部内容,希望文章能够帮你解决omnet++安装 osgEarth步骤详解(ubuntu20.04)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部