Changeset 333 for trunk/README.txt
- Timestamp:
- 01/08/10 16:31:47 (2 years ago)
- File:
-
- 1 edited
-
trunk/README.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.txt
r3 r333 24 24 ########################################################################## 25 25 26 The build system uses SCons. Use 26 AVANGO uses SCons (www.scons.org) as build system. Detailed information 27 about the build process of AVANGO for different platforms can be found under: 28 http://www.avango.org/wiki/Installation 29 30 Here are some basic infos how to build AVANGO under Linux. 31 Use: 27 32 28 33 scons --help … … 31 36 called 'localdefs.py' in the top-level directory. Note that this is a python 32 37 script with full support for all advanced features of python. 38 Here is a sample localdefs.py file: 39 -------------------------------------------------------------------- 40 #adjust these according to your system 41 avango_src_dir ='/home/YOUR_USER/apps/avango' 42 avango_build_dir ='/home/YOUR_USER/apps/avango_build' 43 avango_install_dir ='/home/YOUR_USER/apps/avango_install' 44 osg_install_dir ='/home/YOUR_USER/apps/OpenSceneGraph-2.9.5_install' 45 46 #This is the directory, where AVANGO will put its object files during compilation 47 BUILD=avango_build_dir 48 #This is the installation directory of AVANGO 49 PREFIX=avango_install_dir 50 51 PKG_CONFIG_PATH = avango_install_dir + '/lib/pkgconfig' 52 INCLUDE_PATH = osg_install_dir+'/include' 53 LIBRARY_PATH = osg_install_dir+'/lib' 54 55 #Build in debug mode 56 DEBUG=True 57 #Build with OpenSceneGraph support 58 OPENSCENEGRAPH=True 59 #Set the log level 60 LOG_LEVEL="WARN" 61 -------------------------------------------------------------------- 62 Note, that this file assumes that python and boost are in the system paths. If 63 this is not the case, you also have to add them to the INCLUDE_PATH respectively 64 LIBRARY_PATH variables in your localdefs.py. 65 33 66 34 67 By default the SCons build uses the 'all' build target which will recursively
Note: See TracChangeset
for help on using the changeset viewer.
