Skip to content

Latest commit

 

History

History
28 lines (28 loc) · 337 Bytes

File metadata and controls

28 lines (28 loc) · 337 Bytes

beaglebone-node

Build

Release

mkdir ./build
cd ./build
cmake ..
make all

Debug

mkdir ./build
cd ./build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make all

Build tests

Build

mkdir ./build
cd ./build
cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON ..
make tests

Run

make test