-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
47 lines (45 loc) · 1.43 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
image: Visual Studio 2017
build_script:
- git clone %CLONE_URL% proj --recurse-submodules
- cd proj
- mkdir win64-dx9
- cd win64-dx9
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_DX9=true -G "Visual Studio 15 2017 Win64" ..
- msbuild huge.sln /t:Build /p:Configuration=Release
- dir Release
- cd ..
- mkdir win32-dx9
- cd win32-dx9
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_DX9=true -G "Visual Studio 15 2017" ..
- msbuild huge.sln /t:Build /p:Configuration=Release
- dir Release
- cd ..
- mkdir win64-dx11
- cd win64-dx11
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_DX11=true -G "Visual Studio 15 2017 Win64" ..
- msbuild huge.sln /t:Build /p:Configuration=Release
- dir Release
- cd ..
- mkdir win32-dx11
- cd win32-dx11
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_DX11=true -G "Visual Studio 15 2017" ..
- msbuild huge.sln /t:Build /p:Configuration=Release
- dir Release
- cd ..
- mkdir win64-dx12
- cd win64-dx12
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_DX12=true -G "Visual Studio 15 2017 Win64" ..
- msbuild huge.sln /t:Build /p:Configuration=Release
- dir Release
- cd ..
artifacts:
- path: 'proj\win32-dx9\Release\*.exe'
name: build32-dx9
- path: 'proj\win64-dx9\Release\*.exe'
name: build64-dx9
- path: 'proj\win32-dx11\Release\*.exe'
name: build32-dx11
- path: 'proj\win64-dx11\Release\*.exe'
name: build64-dx11
- path: 'proj\win64-dx12\Release\*.exe'
name: build64-dx12