Skip to content
Snippets Groups Projects
Commit e20ac331 authored by Max Lyon's avatar Max Lyon
Browse files
parents c198ef58 8d451b36
No related branches found
No related tags found
No related merge requests found
Pipeline #15381 passed
......@@ -2,7 +2,31 @@ libHexEx uses the cmake build system.
libHexEx depends on OpenVolumeMesh 2.0, which is available on www.openvolumemesh.org.
In order to build libHexEx, you can perform the following steps:
If you do not already have OpenVolumeMesh installed on your system you can build
LibHexEx together with OpenVolumeMesh by performing the following steps:
# Clone libHexEx
git clone https://www.graphics.rwth-aachen.de:9000/HexEx/libHexEx.git libHexEx
cd libHexEx
# Clone OpenVolumeMesh
git clone https://graphics.rwth-aachen.de:9000/OpenVolumeMesh/OpenVolumeMesh
# Create build directory
mkdir build
cd build
# Initialize the build directory
cmake ..
# Build
make
# Try a demo
./demo/minimum_example/minimum_example
If you do have OpenVolumeMesh installed, you can build libHexEx by performing the following steps:
# Clone libHexEx
git clone https://www.graphics.rwth-aachen.de:9000/HexEx/libHexEx.git libHexEx
......@@ -13,8 +37,8 @@ mkdir build
cd build
# Initialize the build directory
cmake -D OPENVOLUMEMESH_INCLUDE_DIR=/path/to/OpenVolumeMesh/src \
-D OPENVOLUMEMESH_LIBRARY_DIR=/path/to/OpenVolumeMesh/binaries ..
cmake -D OPENVOLUMEMESH_INCLUDE_DIR=/path/to/OpenVolumeMesh/include \
-D OPENVOLUMEMESH_LIBRARY_DIR=/path/to/OpenVolumeMesh/lib ..
# Build
make
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment