Skip to content

Commit 88f13dc

Browse files
committed
Fix: in wrong directory
1 parent 47ea69e commit 88f13dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/gen_build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
mkdir -p release && cmake ../.. -DCMAKE_BUILD_TYPE=Release $@ && cd ..
3-
mkdir -p debug && cmake ../.. -DCMAKE_BUILD_TYPE=Debug $@ && cd ..
2+
mkdir -p release && cd release && cmake ../.. -DCMAKE_BUILD_TYPE=Release $@ && cd ..
3+
mkdir -p debug && cd debug && cmake ../.. -DCMAKE_BUILD_TYPE=Debug $@ && cd ..

0 commit comments

Comments
 (0)