Skip to content

Commit 81576fd

Browse files
committed
Merge branch 'xd_dev' of github.com:Xottab-DUTY/xray-16 into linux
2 parents 036e80d + 7cd6f8f commit 81576fd

File tree

270 files changed

+8351
-1611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+8351
-1611
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
X-Ray Engine 1.6 expansion
1+
X-Ray Engine 1.6 expansion [![Build status](https://ci.appveyor.com/api/projects/status/16mp39v0d7fts6yf?svg=true)](https://ci.appveyor.com/project/OpenXRay/xray-16)
22
==========================
33

44
### Build Status:
@@ -28,5 +28,5 @@ Pull requests appreciated! However, the following things should be taken into co
2828
* Major changes should be discussed before implementation
2929
* Follow the [procedures](doc/procedure)
3030

31-
Be advised that this project is not sanctioned by GSC Game World in any way ? and they remain the copyright holders
31+
Be advised that this project is not sanctioned by GSC Game World in any way and they remain the copyright holders
3232
of all the original source code.

appveyor.yml

Lines changed: 19 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,41 @@
11
version: '{build}'
2+
23
pull_requests:
34
do_not_increment_build_number: true
5+
46
skip_tags: true
5-
image: Visual Studio 2017
7+
8+
image:
9+
- Visual Studio 2017
10+
611
configuration:
712
- Debug
813
- Mixed
914
- Release
15+
1016
platform:
1117
- x64
1218
- x86
13-
environment:
14-
matrix:
15-
# - BUILDSYSTEM: MinGW
16-
- BUILDSYSTEM: MSVC
17-
#install:
18-
#- SET LUAENV=lua51
19-
#- cmd: .appveyor\install-lua.cmd
20-
before_build:
21-
nuget restore src\engine.sln
22-
cache:
23-
- packages -> **\packages.config
2419

25-
build_script:
26-
- if [%BUILDSYSTEM%]==[MSVC] git submodule update --init --recursive
27-
- if [%BUILDSYSTEM%]==[MinGW] if [%PLATFORM%]==[x86] if [%CONFIGURATION%]==[Debug] (
28-
git submodule update --init --recursive
29-
)
20+
cache:
21+
- packages -> **\packages.config
3022

31-
# Remove sh.exe from the path otherwise CMake will complain:
32-
# "sh.exe was found in your PATH, here: C:/Program Files/Git/usr/bin/sh.exe"
33-
# and the MinGW build will not work (the Visual Studio build does not care).
34-
- if [%BUILDSYSTEM%]==[MinGW] SET "PATH=%PATH:C:\Program Files\Git\usr\bin=%"
23+
before_build:
24+
- cmd: >-
25+
nuget restore src\engine.sln
3526
36-
# Add MinGW-w64 to PATH
37-
- if [%BUILDSYSTEM%]==[MinGW] SET "PATH=C:\MinGW-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\MinGW64\bin;%PATH%"
27+
git submodule update --init --recursive
3828
39-
- ECHO %PATH%
40-
- if [%BUILDSYSTEM%]==[MinGW] if [%PLATFORM%]==[x86] if [%CONFIGURATION%]==[Debug] (
41-
MinGW32-make --version &&
42-
g++ --version &&
43-
MKDIR bin &&
44-
CD bin &&
45-
cmake .. -G "MinGW Makefiles" &&
46-
MinGW32-make
47-
)
48-
- if [%BUILDSYSTEM%]==[MSVC] (
49-
msbuild "src\engine.sln" /m /verbosity:minimal /property:PlatformToolset=v141 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
50-
)
29+
build:
30+
project: src/engine.sln
31+
parallel: true
32+
verbosity: minimal
5133

52-
#create artifacts
5334
after_build:
54-
- if [%BUILDSYSTEM%]==[MSVC] xr_pack_build.cmd
55-
- if [%BUILDSYSTEM%]==[MinGW] if [%PLATFORM%]==[x86] if [%CONFIGURATION%]==[Debug] (
56-
xr_pack_build.cmd
57-
)
35+
- cmd: xr_pack_build.cmd
5836

5937
test: off
38+
6039
artifacts:
6140
- path: res/OpenXRay.Dx86.7z
6241
name: OpenXRay.Dx86.7z

0 commit comments

Comments
 (0)