博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
osg源码编译步骤
阅读量:4049 次
发布时间:2019-05-25

本文共 1273 字,大约阅读时间需要 4 分钟。

1、最基础的库zlib

2、libjpeg;http://blog.csdn.net/dgyanyong/article/details/22970213

3、libtiff;http://blog.csdn.net/chunxiaopengshan/article/details/4038368

With Microsoft Visual C++ installed, and properly configured for commandline use (you will likely need to source VCVARS32.BAT in AUTOEXEC.bAT or somewhere similar) you should be able to use the provided makefile.vc.

C:\LIBTIFF\LIBTIFF> nmake /f makefile.vcC:\LIBTIFF\LIBTIFF> cd ..\toolsC:\LIBTIFF\TOOLS> nmake /f makefile.vc
This will build the library file 
LIBTIFF\LIBTIFF\LIBTIFF.LIB
. This can be used in Win32 programs. If used in a project using the /MD compiler switch (using the runtime C library), it may be necessary to modify the CFLAGS macro in makefile.vc to correspond.

The makefile also builds a DLL (libtiff.dll) with an associated import library (libtiff_i.lib). Any builds using libtiff will need to include the LIBTIFF\LIBTIFF directory in the include path.

The libtiff\tools\makefile.vc should build .exe's for all the standard TIFF tool programs.

NOTE: The contents of the contrib/win32 directory should no longer be needed, and are kept in the distribution temporarily.

4、libpng;http://blog.csdn.net/yshen_dublin/article/details/4942871

以上三库均需依赖zlib库;

5、核心库OpenThreads,以获得多线程支持;

6、osg源码可以从osgwiki官网下载;

你可能感兴趣的文章
内存池
查看>>
输入设备节点自动生成
查看>>
GNU hello代码分析
查看>>
Qt继电器控制板代码
查看>>
wpa_supplicant控制脚本
查看>>
gstreamer相关工具集合
查看>>
RS232 四入四出模块控制代码
查看>>
linux 驱动开发 头文件
查看>>
container_of()传入结构体中的成员,返回该结构体的首地址
查看>>
linux sfdisk partition
查看>>
ipconfig,ifconfig,iwconfig
查看>>
opensuse12.2 PL2303 minicom
查看>>
网络视频服务器移植
查看>>
Encoding Schemes
查看>>
移植QT
查看>>
如此调用
查看>>
计算机的发展史
查看>>
带WiringPi库的交叉编译如何处理一
查看>>
带WiringPi库的交叉笔译如何处理二之软链接概念
查看>>
Spring事务的七种传播行为
查看>>