Skip to content

Commit bf2ba14

Browse files
committed
fix Makefile
1 parent d5b8ba7 commit bf2ba14

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
all: build build_debug
22

3+
34
build:
45
mkdir build
56
cd build && cmake .. -DBUILD_VIEWER_APPLICATION=OFF -G Ninja
67
cd build && ninja -j4
8+
mkdir -p build/Debug
9+
10+
build/Debug:
11+
mkdir -p build/Debug
712

8-
build_debug: build
13+
build_debug: build build/Debug
914
mkdir build_debug
1015
cd build_debug && cmake .. -DBUILD_VIEWER_APPLICATION=OFF \
1116
-G Ninja \

0 commit comments

Comments
 (0)