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
5
5
image : Visual Studio 2017
6
6
environment :
7
7
matrix :
8
- - tbs_arch : Win32
8
+ - tbs_arch : x86
9
9
tbs_tools : mingw
10
10
- tbs_arch : x64
11
11
tbs_tools : mingw
12
- - tbs_arch : Win32
12
+ - tbs_arch : x86
13
13
tbs_tools : msvc
14
14
tbs_config : Debug
15
- - tbs_arch : Win32
15
+ - tbs_arch : x86
16
16
tbs_tools : msvc
17
17
tbs_config : Release
18
18
- tbs_arch : x64
@@ -29,17 +29,12 @@ install:
29
29
}
30
30
build_script :
31
31
- 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% &&
33
34
MKDIR bin &&
34
35
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
43
38
)
44
39
- if [%tbs_tools%]==[msvc] (
45
40
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