blob: 37edf615ad1a647283f07ff5922149f30fcd9ad0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
os: Windows Server 2012 R2
platform:
- x86
- x86_amd64
environment:
matrix:
- MODE: --enable-shared
- MODE: --disable-shared
install:
- call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
- cl # check compiler version
# always build via amalgamation due to build time constraints on appveyor
build_script:
- python configure.py --cc=msvc --via-amalgamation --cpu=%PLATFORM% %MODE%
- nmake
- botan-test
- nmake install
|