File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,27 @@ environment:
2323 tbs_config : Release
2424install :
2525- ps : >-
26- if($env:tbs_tools -eq 'mingw' -and $env:tbs_arch -eq 'x64xDISABLE ') {
26+ if($env:tbs_tools -eq 'mingw' -and $env:tbs_arch -eq 'x64 ') {
2727 invoke 'curl' '-L -o mw64.7z "http://libgd.blob.core.windows.net/mingw/x86_64-4.9.1-release-posix-seh-rt_v3-rev1.7z"';
2828 invoke '7z' 'x -oC:\ mw64.7z';
2929 }
3030build_script :
31- - cmd : " git submodule update --init --recursive &&\n if [%tbs_tools%]==[mingw] if [%tbs_arch%]==[Win32] (\n SET PATH=C:\\ MinGW\\ bin;%PATH% &&\n ECHO %cd% \n ECHO *** Building %tbs_tools%\\ %tbs_arch% &&\n MKDIR bin &&\n cmake .. &&\n make\n ) &&\n if [%tbs_tools%]==[mingw] if [%tbs_arch%]==[x64] (\n SET PATH=C:\\ mingw64\\ bin;%PATH% &&\n ECHO %cd% &&\n ECHO *** Building %tbs_tools%\\ %tbs_arch% &&\n MKDIR bin &&\n cmake .. &&\n make &&\n ) &&\n if [%tbs_tools%]==[msvc] (\n ECHO %cd% &&\n ECHO *** Building %tbs_tools%\\ %tbs_arch%\\ %tbs_config% &&\n 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\"\n )"
31+ - git submodule update --init --recursive
32+ - if [%tbs_tools%]==[mingw] if [%tbs_arch%]==[Win32] (
33+ SET PATH=C:\MinGW\bin;%PATH% &&
34+ MKDIR bin &&
35+ cmake .. &&
36+ make
37+ )
38+ - if [%tbs_tools%]==[mingw] if [%tbs_arch%]==[x64] (
39+ SET PATH=C:\mingw64\bin;%PATH% &&
40+ MKDIR bin &&
41+ cmake .. &&
42+ make &&
43+ )
44+ - if [%tbs_tools%]==[msvc] (
45+ 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"
46+ )
3247test : off
3348artifacts :
3449- path : res/xdOpenXRay.Dx86.7z
You can’t perform that action at this time.
0 commit comments