Skip to content

Commit

Permalink
Added scripts for VS15 (Visual Studio 2017)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Glatzel committed May 24, 2017
1 parent 6abe0e6 commit e8628c3
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
*.dir
x64

app/Intrinsic
app/*.exe
app/*.lib
Expand Down
11 changes: 11 additions & 0 deletions scripts_win32/ConfigAndBuildDependenciesVS15.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
cd ../dependencies/glslang
mkdir build
cd build

cmake .. -G"Visual Studio 15 2017 Win64"
call cmake --build . --config Release
call cmake --build . --config Debug

cd ..\..\..\scripts_win32

timeout 2
9 changes: 9 additions & 0 deletions scripts_win32/ConfigVS15.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
cd ..
mkdir build
cd build

cmake -G"Visual Studio 15 2017 Win64" ..

cd ..\scripts_win32

timeout 2
9 changes: 9 additions & 0 deletions scripts_win32/ConfigVS15_FinalBuild.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
cd ..
mkdir build
cd build

cmake -DINTR_FINAL_BUILD:BOOL=ON -G"Visual Studio 15 2017 Win64" ..

cd ..\scripts_win32

timeout 2

0 comments on commit e8628c3

Please sign in to comment.