Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 509 Bytes

File metadata and controls

30 lines (18 loc) · 509 Bytes

Matrices and Vectors

Requirements

sudo apt install libgtest-dev

Build commands: Executable will be kept in the bin directory

For Release build, enable set(CMAKE_BUILD_TYPE "Release") in CMakeLists.txt

For Debug build (with ASAN flags), enable set(CMAKE_BUILD_TYPE "Release") in CMakeLists.txt

mkdir build
cd build
cmake ..
make -j8

Clean commands:

make clean

Run main:

cd bin
./run_main

Run tests:

cd bin
./run_tests