8000 Appveyor: Build also with Visual Studio 2015/Clang. · log4cplus/log4cplus@78e4937 · GitHub
[go: up one dir, main page]

Skip to content

Commit 78e4937

Browse files
committed
Appveyor: Build also with Visual Studio 2015/Clang.
1 parent 2f2b6f3 commit 78e4937

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

appveyor.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,21 @@ environment:
88
- PRJ_GEN: "Visual Studio 12 2013 Win64"
99
BDIR: msvc2013
1010
PRJ_CFG: Release
11+
PARAMS: ''
1112
- PRJ_GEN: "Visual Studio 14 2015 Win64"
1213
BDIR: msvc2015
1314
PRJ_CFG: Release
15+
PARAMS: ''
16+
- PRJ_GEN: "Visual Studio 14 2015 Win64"
17+
BDIR: msvc2015clang
18+
PRJ_CFG: Release
19+
PARAMS: -T "v140_clang_c2"
1420

1521
build_script:
1622
- mkdir build.%BDIR%
1723
- cd build.%BDIR%
18-
- cmake .. -G"%PRJ_GEN%" -DCMAKE_BUILD_TYPE=%PRJ_CFG%
19-
- cmake --build . --config %PRJ_CFG% --clean-first
24+
- cmake .. -G "%PRJ_GEN%" "-DCMAKE_BUILD_TYPE=%PRJ_CFG%" %PARAMS%
25+
- cmake --build . --config "%PRJ_CFG%" --clean-first
2026

2127
test_script:
2228
- ctest -V --output-on-failure -C %PRJ_CFG%

0 commit comments

Comments
 (0)
0