Go to file
Robert Osfield ec1a586a5f From David Callu, "I have added the uninstall command at the end of the first file,
and the configuration file template use by the command is the second file.
 
  The command use the cmake_install.cmake file which list all file installed by the install target.
  this issue come from the CMake FAQ"
2007-05-17 11:48:30 +00:00
applications Renamed ViewerEventHandler to ViewerEventHandlers 2007-05-14 15:16:26 +00:00
CMakeModules From David Callu, "I have added the uninstall command at the end of the first file, 2007-05-17 11:48:30 +00:00
doc Moved osgProducer and osgproducerviewer out into their own repository. 2007-02-27 13:16:18 +00:00
examples From Michael Hartman, "I have gone in and created a CMakeList.txt file for osgviewerMFC application. 2007-05-17 11:04:57 +00:00
include From Andre Garneau, warnings fixes fo VC++ 2007-05-17 10:59:05 +00:00
src From Andre Garneau, warnings fixes fo VC++ 2007-05-17 10:59:05 +00:00
VisualStudio Removed more of the old VisualStudio build system 2007-04-10 13:12:58 +00:00
Xcode Fixes to resync Xcode project with current tree. 2007-04-30 22:12:08 +00:00
AUTHORS.txt Updated authors file 2007-05-14 09:43:48 +00:00
ChangeLog Updated ChangeLog and AUTHORS.txt for release 2007-05-07 07:58:12 +00:00
CMakeLists.txt From David Callu, "I have added the uninstall command at the end of the first file, 2007-05-17 11:48:30 +00:00
genwrapper.conf Added OpenThreads wrappers 2007-05-02 19:57:05 +00:00
LICENSE.txt Added missing LGPL section to LICENSE.txt 2006-11-20 10:12:57 +00:00
NEWS.txt From Paul Martz, speeling fixes for Tessellator/Tessellation. 2007-01-08 21:29:49 +00:00
README.txt Updated ChangeLog and AUTHORS.txt for release 2007-05-07 07:58:12 +00:00
runexamples.bat Removed examples: 2007-01-11 15:48:44 +00:00

Welcome to the OpenSceneGraph (OSG).

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.

    http://www.openscenegraph.org
  
For the impatient, read the simplified build notes below.

Robert Osfield.
Project Lead.
7th May 2007.

--

Notes for 1.9.3 release
=======================

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.

--

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
cmake or ccmake commandline utils:
 
  cd OpenSceneGraph
  ccmake .
  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".