Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 686 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 686 Bytes

OMPL (Open Motion Planning Library) plugin for V-REP

Compiling

  1. Install required packages for v_repStubsGen: see v_repStubsGen's README
  2. Compile ompl-1.1.0
  3. Checkout and compile
$ git clone --recursive https://github.com/CoppeliaRobotics/v_repExtOMPL.git
$ cd v_repExtOMPL
$ cmake .
$ cmake --build .

You may need to set OMPL_INCLUDE_PATH and OMPL_LIB_PATH cmake variables to the correct values, e.g.:

$ cmake -G "MinGW Makefiles" -DOMPL_INCLUDE_PATH=c:\local\ompl-1.1.0-Source\src -DOMPL_LIB_PATH=c:\local\ompl-1.1.0-Source\build\lib .
$ cmake --build .