Code owners
Assign users and groups as approvers for specific file changes. Learn more.
README.md 2.17 KiB
How to install redesign-prototye
Build Nektar++ e.g. on current master
- See README.md under Nektar++ repository
- For development, the
Debug
option is recommended - Note that the SIMD options have to be turned off, if you want to use CUDA support (Should be by default).
Build Nektar++ redesign-prototype
In main directory of the redesign, create a build
directory cd
into it, configure and build via:
mkdir build
cd build
cmake ../ -DNektar++_DIR=~/code/nektarMaster/build/dist/lib64/nektar++/cmake -DCMAKE_BUILD_TYPE=Debug
make
If boost is not available on system, build boost (e.g. v1.71.1)
- One option is via the Ubuntu package manager
sudo apt install libboost-all-dev
- Another option is to download boost and install it manually
After installing boost, run again:
cmake ../ -DNektar++_DIR=~/code/nektarMaster/build/dist/lib64/nektar++/cmake -DCMAKE_BUILD_TYPE=Debug
make