Get Xdmf: Difference between revisions
From XdmfWeb
Jump to navigationJump to search
Dave.demarle (talk | contribs) No edit summary |
Dave.demarle (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
The old version of this page can be found at [http://xdmf.org/index.php/Get_Xdmf_original] | The old version of this page can be found at [http://xdmf.org/index.php/Get_Xdmf_original] | ||
Xdmf depends on | Xdmf depends on hdf5 and has a header only dependency on boost. You must obtain and build those projects before you can build xdmf. | ||
To use Xdmf from Python | To use Xdmf from Python or Java you will also need swig. | ||
To obtain xdmf: | To obtain xdmf: | ||
* git clone git:// | * git clone git://xdmf.org/Xdmf.git | ||
* mkdir build | * mkdir build | ||
* cd build | * cd build | ||
Line 13: | Line 13: | ||
To use xdmf from wrapped languages you will need to configure XDMF_WRAP_PYTHON, or XDMF_WRAP_JAVA on in ccmake. | To use xdmf from wrapped languages you will need to configure XDMF_WRAP_PYTHON, or XDMF_WRAP_JAVA on in ccmake. | ||
Xdmf is | Xdmf is mirrored in VTK which has reader and writer classes the call into XDMF to do file IO. To use XDMF within VTK, simply turn on Module_vtkIOXdmf2 or Module_vtkIOXdmf3 on the advanced options page of you VTK configuration. |
Revision as of 08:01, 3 April 2016
The old version of this page can be found at [1]
Xdmf depends on hdf5 and has a header only dependency on boost. You must obtain and build those projects before you can build xdmf. To use Xdmf from Python or Java you will also need swig.
To obtain xdmf:
- git clone git://xdmf.org/Xdmf.git
- mkdir build
- cd build
- ccmake ..
- make
To use xdmf from wrapped languages you will need to configure XDMF_WRAP_PYTHON, or XDMF_WRAP_JAVA on in ccmake.
Xdmf is mirrored in VTK which has reader and writer classes the call into XDMF to do file IO. To use XDMF within VTK, simply turn on Module_vtkIOXdmf2 or Module_vtkIOXdmf3 on the advanced options page of you VTK configuration.