File: INSTALL

package info (click to toggle)
ode 1%3A0.5-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,624 kB
  • ctags: 6,482
  • sloc: cpp: 53,244; ansic: 2,892; makefile: 282; perl: 273; sh: 65
file content (32 lines) | stat: -rw-r--r-- 1,346 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

here are the steps to buid ODE:

(0) if you're using Microsoft's Visual C++ compiler, you have the option
    of using the workspace and project files in the VC6 subdirectory,
    or you can follow the instructions below.    

(1) get the GNU 'make' tool. many unix platforms come with this, although
    sometimes it is called 'gmake'. a version of GNU make for windows
    is available at: http://q12.org/ode/bin/make.exe

(2) edit the settings in the file config/user-settings. the list of supported
    platforms is given in that file.

(3) run 'make' to configure and build ODE and the graphical test programs.
    to build parts of ODE the make targets are:

	make configure		create configuration file include/ode/config.h
	make ode-lib		build the core ODE library
	make drawstuff-lib	build the OpenGL-based graphics library
	make ode-test		build some ODE tests (they need drawstuff)
	make drawstuff-test	build a test app for the drawstuff library

    all of these targets will do an implicit 'make configure'. if the
    configurator screws up then you can edit the settings directly in
    include/ode/config.h.

(4) to install the ODE library onto your system you should copy the 'lib' and
    'include' directories to a suitable place, e.g. on unix:

	include/ode  --> /usr/local/include/ode
	lib/libode.a --> /usr/local/lib/libode.a