pxmlw6n2f/sdformat_for_mpi
zhangshuai 9a22ca648f 1. MPI_Allgatherv, version 0.6.2
2. modification in sdf CMakeLists, install event.sdf etc.
2019-09-24 17:29:17 +08:00
..
cmake Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
doc Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
include/sdf Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
sdf 1. MPI_Allgatherv, version 0.6.2 2019-09-24 17:29:17 +08:00
src Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
test Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
tools Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
.gitignore Ignore the "build" documents folder in "sdformat_for_mpi" 2019-05-27 11:16:12 +08:00
AUTHORS Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
CMakeLists.txt Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
COPYING Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
Changelog.md Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
INSTALL_WIN32.md Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
LICENSE Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
Migration.md Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
NEWS Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
README Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00
configure.bat Initial version of MPI_Gazebo 2019-04-26 11:20:11 +08:00

README

sdformat - Simulation Description Format (SDF) parser
-----------------------------------------------------

SDF is an XML file format that describes environments, objects, and robots
in a manner suitable for robotic applications. SDF is capable of representing
and describing different physic engines, lighting properties, terrain, static
or dynamic objects, and articulated robots with various sensors, and acutators.
The format of SDF is also described by XML, which facilitates updates and
allows conversion from previous versions. A parser is also contained within
this package that reads SDF files and returns a C++ interface.
  
  http://sdformat.org

Installation
------------
Standard installation can be performed in UNIX systems using the following 
steps:

 - mkdir build/
 - cd build/
 - cmake ..
 - sudo make install

sdformat supported cmake parameters at configuring time:
 - USE_EXTERNAL_URDF (bool) [default False]
   Do not use the internal copy of urdfdom and use the one installed in the
   system instead. Recommended if you have a working installation of urdfdom.
 - USE_UPSTREAM_CFLAGS (bool) [default True]
   Use the sdformat team compilation flags instead of the common set defined
   by cmake.
               
Uninstallation 
--------------
To uninstall the software installed with the previous steps:
 - cd build/
 - sudo make uninstall