Skip to content

Commit 8ae9c59

Browse files
committed
Windows and Linux init scripts make separate directories for use with WSL
1 parent a025454 commit 8ae9c59

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

init-linux.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mkdir -p build && cd build
2-
cmake -G "Ninja" ..
1+
mkdir -p build && mkdir -p build/linux && cd build/linux
2+
cmake -G "Ninja" ../..

init-win.bat

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
mkdir build
44
cd build
5-
cmake ..
5+
mkdir win
6+
cd win
7+
cmake ..\..

0 commit comments

Comments
 (0)