Skip to content

Commit b84df87

Browse files
committed
Build files are now written to ../src/Build
1 parent 321ef4c commit b84df87

7 files changed

+19
-7
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ src/CMakeCache.txt
3333
src/cmake_install.cmake
3434
src/Makefile
3535
src/lib*
36+
src/Build/*

Diff for: src/configure-csgo-debug.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
cmake -DGAME=csgo -DCMAKE_BUILD_TYPE=Debug
1+
mkdir Build
2+
cd Build
3+
cmake .. -DGAME=csgo -DCMAKE_BUILD_TYPE=Debug

Diff for: src/configure-csgo-release.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
cmake -DGAME=csgo
1+
mkdir Build
2+
cd Build
3+
cmake .. -DGAME=csgo

Diff for: src/configure-csgo.bat

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
cmake -G"Visual Studio 10" -DGAME=csgo
1+
mkdir Build
2+
cd Build
3+
cmake .. -G"Visual Studio 10" -DGAME=csgo
24
pause

Diff for: src/configure-ob-debug.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
cmake -DGAME=ob-valve -DCMAKE_BUILD_TYPE=Debug
1+
mkdir Build
2+
cd Build
3+
cmake .. -DGAME=ob-valve -DCMAKE_BUILD_TYPE=Debug

Diff for: src/configure-ob-release.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
cmake -DGAME=ob-valve
1+
mkdir Build
2+
cd Build
3+
cmake .. -DGAME=ob-valve

Diff for: src/configure-ob.bat

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
cmake -G"Visual Studio 10" -DGAME=ob-valve
2-
1+
mkdir Build
2+
cd Build
3+
cmake .. -G"Visual Studio 10" -DGAME=ob-valve
34
pause

0 commit comments

Comments
 (0)