-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added scripts for VS15 (Visual Studio 2017)
- Loading branch information
Benjamin Glatzel
committed
May 24, 2017
1 parent
6abe0e6
commit e8628c3
Showing
4 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
*.dir | ||
x64 | ||
|
||
app/Intrinsic | ||
app/*.exe | ||
app/*.lib | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |