File: INSTALL

package info (click to toggle)
fcl 0.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 28,724 kB
  • sloc: xml: 188,729; cpp: 55,417; ansic: 22,921; sh: 41; makefile: 23
file content (32 lines) | stat: -rw-r--r-- 979 bytes parent folder | download | duplicates (2)
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

Dependencies:
============

 - Eigen (available at http://eigen.tuxfamily.org/)
 - libccd (available at http://libccd.danfis.cz/)
 - octomap (optional dependency, available at http://octomap.github.com)

Eigen and libccd are mandatory dependencies. If octomap is not found,
collision detection with octrees will not be possible.

For installation, CMake will also be needed (http://cmake.org).

Install:
=======

* Linux / Mac OS:
  The CMakeLists.txt can be used to generate makefiles; For example, one may use operations such as:

  mkdir build
  cd build
  cmake ..
  make -jN # N is the maximum number of parallel compile jobs
  
Once the compilation is finished,
  make install
will install the project. To specify the installation prefix,
pass the parameter -DCMAKE_INSTALL_PREFIX=/my/prefix/ to the "cmake .." command above.


* Visual Studio (2015 or higher is required):
  The CMakeLists.txt can be used to generate a Visual Studio project, using the cmake build tool.