Skip to content

Commit 8fd0621

Browse files
committed
add build helper scripts
1 parent ad4df5c commit 8fd0621

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

scripts/build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
3+
mkdir build
4+
cd build
5+
cmake ..
6+
make -j
7+

scripts/debug-build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
3+
mkdir debug-build
4+
cd debug-build
5+
cmake -DCMAKE_BUILD_TYPE=Debug ..
6+
make -j
7+

0 commit comments

Comments
 (0)