Skip to content

Commit 9805d47

Browse files
Update README.md file with information how to run tests
1 parent ab2c657 commit 9805d47

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This installation guide focusses on Ubuntu 24.04 as a distribution. The process
1717

1818
First, install a few pre-requisites:
1919

20-
sudo apt install pt-get install cmake g++ git python3-dev qt5-qmake libqt5opengl5-dev
20+
sudo apt install pt-get install cmake g++ git python3-dev qt5-qmake libqt5opengl5-dev libopenvdb-dev
2121

2222
If you want to enable CUDA support, additionally get the latest toolkit from nVidia, and install the appropriate developer driver (be careful though, these driver tend to wreck X11 - get some installation instructions from the web if this is the first time you install CUDA on Linux)
2323

@@ -29,9 +29,20 @@ To build the project using CMake, set up a build directory and choose the build
2929

3030
mkdir mantaflow/build
3131
cd mantaflow/build
32-
cmake .. -DGUI=ON -DOPENMP=ON
32+
cmake .. -DGUI=ON -DTBB=ON -DOPENVDB=ON
3333
make -j4
3434

3535
That's it! You can now test mantaflow using an example scene
3636

3737
./manta ../scenes/simpleplume.py
38+
39+
## Run tests ##
40+
41+
Generate reference date and run tests:
42+
43+
cd tools/tests
44+
MANTA_GEN_TEST_DATA=1 ./runTests.py ../../build/manta
45+
46+
Run tests:
47+
48+
./runTests.py ../../build/manta

0 commit comments

Comments
 (0)