Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 334 Bytes

BUILD_INSTRUCTIONS.md

File metadata and controls

19 lines (15 loc) · 334 Bytes

Linux:

  • CMake 3.9 is required.
  • a valid installation of gtest is required on your computer
## Debug / Release
mkdir build
cd build
cmake -DMAGMA_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Debug ..
make

##! installation
sudo make install

##! unit tests
cd build
ctest --no-compress-output --output-on-failure -T Test || exit 1