File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ rem
3
+ rem Clang-cl/Microsoft Visual Studio C/C++
4
+ rem
5
+ echo Configure: Clang-cl/Microsoft Visual Studio C/C++
6
+
7
+ rem perl: assume within path
8
+ if not defined PERL (
9
+ set PERL = perl
10
+ )
11
+
12
+ rem iscc: command line interface
13
+ if not defined INNO (
14
+ set INNO = " C:/Program Files (x86)/Inno Setup 5/iscc"
15
+ )
16
+
17
+ %PERL% ./support/config_windows.pl makelib.pl --inno=%INNO% %* clangcl
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ rem
3
+ rem Clang-cl/Microsoft Visual Studio/x64
4
+ rem
5
+ echo Configure: Clang-cl/Microsoft Visual Studio C/C++ x64
6
+
7
+ rem perl: assume within path
8
+ if not defined PERL (
9
+ set PERL = perl
10
+ )
11
+
12
+ rem iscc: command line interface
13
+ if not defined INNO (
14
+ set INNO = " C:/Program Files (x86)/Inno Setup 5/iscc"
15
+ )
16
+
17
+ %PERL% ./support/config_windows.pl makelib.pl --inno=%INNO% %* clangcl-x64
You can’t perform that action at this time.
0 commit comments