mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
14 lines
231 B
Bash
Executable File
14 lines
231 B
Bash
Executable File
cd
|
|
mkdir -p build/netgen
|
|
cd build/netgen
|
|
cmake \
|
|
-DUSE_CCACHE=ON \
|
|
-DBUILD_TYPE=DEBUG \
|
|
-DENABLE_UNIT_TESTS=ON \
|
|
-DUSE_OCC=ON \
|
|
-DCHECK_RANGE=ON \
|
|
-DUSE_CGNS=ON \
|
|
../../src/netgen
|
|
make -j12
|
|
make install
|