Building CavePainting: Difference between revisions

From VrlWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 27: Line 27:
#./run
#./run


Commands from step 2 through step 24 together:
Commands from step 2 through step 24:
<pre>
<pre>
cd $G
cd $G
Line 52: Line 52:
chmod 775 run
chmod 775 run
./run
./run
</pre>
</pre>
[[Category:CavePainting HOWTO]]
[[Category:CavePainting HOWTO]]

Revision as of 18:27, 13 June 2012

Steps for Building CavePainting

  1. Make sandbox directory and define as $G
  2. cd $G
  3. cvs co common
  4. cvs co project
  5. cvs co import
  6. mkdir install_linux
  7. cd import
  8. svn co https://vrg3d.svn.sourceforge.net/svnroot/vrg3d vrg3d
  9. cd vrg3d/vrg3d
  10. python configure.py -vrg3d $G/install_linux
  11. make allclean
  12. make all
  13. make install
  14. cd $G/common/MMotion
  15. make
  16. make install
  17. cd $G/common/kuchora
  18. make
  19. make install
  20. cd $G/project/kuchora/cavepainting
  21. make
  22. make install
  23. chmod 775 run
  24. ./run

Commands from step 2 through step 24:

cd $G
cvs co common
cvs co project
cvs co import
mkdir install_linux
cd import
svn co https://vrg3d.svn.sourceforge.net/svnroot/vrg3d vrg3d
cd vrg3d/vrg3d
python configure.py -vrg3d $G/install_linux
make allclean
make all
make install
cd $G/common/MMotion
make
make install
cd $G/common/kuchora
make
make install
cd $G/project/kuchora/cavepainting
make
make install
chmod 775 run
./run