2002-04-21 17:51:59 +08:00
|
|
|
Welcome to the OpenSceneGraph (OSG).
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2007-05-07 15:51:02 +08:00
|
|
|
For up to date information on the project, how to indepth details on how to
|
|
|
|
compile and run libraries and examples, and see the documentation on the
|
|
|
|
OpenSceneGraph website.
|
2004-11-17 20:58:50 +08:00
|
|
|
|
|
|
|
http://www.openscenegraph.org
|
|
|
|
|
2007-05-07 15:51:02 +08:00
|
|
|
For the impatient, read the simplified build notes below.
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2007-04-10 21:23:32 +08:00
|
|
|
Robert Osfield.
|
|
|
|
Project Lead.
|
2007-05-28 18:17:52 +08:00
|
|
|
29th May 2007.
|
2007-05-07 15:51:02 +08:00
|
|
|
|
|
|
|
--
|
|
|
|
|
2007-05-28 18:17:52 +08:00
|
|
|
Notes for 1.9.6 release
|
2007-05-07 15:58:12 +08:00
|
|
|
=======================
|
|
|
|
|
|
|
|
OpenThreads/include and src directories has now been merged directly into
|
|
|
|
the OpenSceneGraph distribution, this means that you don't need to download,
|
|
|
|
compile or install it, and will be able to remove the external OpenThreads
|
|
|
|
from your system.
|
|
|
|
|
|
|
|
--
|
|
|
|
|
2007-05-07 15:51:02 +08:00
|
|
|
How to build the OpenSceneGraph
|
|
|
|
===============================
|
|
|
|
|
|
|
|
The OpenSceneGraph use the CMake build system to generate platform specific
|
|
|
|
build environment. CMake reads the CMakeLists.txt files that you'll find
|
|
|
|
throughout the OpenSceneGraph directories, check for installed dependnecies
|
|
|
|
and then generate the appropriate build system.
|
|
|
|
|
|
|
|
If you don't already have CMake installed on your system you can grab it
|
|
|
|
from http://www.cmake.org, version 2.4.6 or later.
|
|
|
|
|
|
|
|
Under unices (i.e. Linux, IRIX, Solaris, Free-BSD, HP-Ux, AIX, OSX) use the
|
2007-05-28 18:17:52 +08:00
|
|
|
cmake or ccmake commandline utils or use the included simple (one line)
|
|
|
|
configure script that'll run cmake for you:
|
2007-05-07 15:51:02 +08:00
|
|
|
|
|
|
|
cd OpenSceneGraph
|
2007-05-26 23:55:26 +08:00
|
|
|
./configure
|
2007-05-07 15:51:02 +08:00
|
|
|
make
|
|
|
|
sudo make install
|
|
|
|
|
|
|
|
Under Windows use the GUI tool CMakeSetup to build your VisualStudio files.
|
|
|
|
The following page on our wiki dedicated to the CMake build should help
|
|
|
|
guide you through the process:
|
|
|
|
|
|
|
|
http://www.openscenegraph.com/index.php?page=Build.CMake
|
|
|
|
|
|
|
|
For further details on compiliation, installation and platform specific information
|
|
|
|
read "Getting Started" at http://www.openscenegraph.org, under
|
|
|
|
"Documentation".
|