File tree Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ skip_tags: true
55image : Visual Studio 2017
66environment :
77 matrix :
8- - tbs_arch : Win32
8+ - tbs_arch : x86
99 tbs_tools : mingw
1010 - tbs_arch : x64
1111 tbs_tools : mingw
12- - tbs_arch : Win32
12+ - tbs_arch : x86
1313 tbs_tools : msvc
1414 tbs_config : Debug
15- - tbs_arch : Win32
15+ - tbs_arch : x86
1616 tbs_tools : msvc
1717 tbs_config : Release
1818 - tbs_arch : x64
@@ -29,17 +29,12 @@ install:
2929 }
3030build_script :
3131- git submodule update --init --recursive
32- - if [%tbs_tools%]==[mingw] if [%tbs_arch%]==[Win32] (
32+ - if [%tbs_tools%]==[mingw] (
33+ SET PATH=C:\MinGW\bin;%PATH% &&
3334 MKDIR bin &&
3435 CD bin &&
35- cmake .. &&
36- make
37- )
38- - if [%tbs_tools%]==[mingw] if [%tbs_arch%]==[x64] (
39- MKDIR bin &&
40- CD bin &&
41- cmake .. &&
42- make
36+ cmake .. -G "MinGW Makefiles"&&
37+ mingw32-make
4338 )
4439- if [%tbs_tools%]==[msvc] (
4540 msbuild "src\engine.sln" /m /verbosity:minimal /property:PlatformToolset=v141 /t:Clean,Build /p:Platform=%tbs_arch% /p:Configuration=%tbs_config% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
You can’t perform that action at this time.
0 commit comments