cpp-peglib/appveyor.yml
hvellyr f98f8697c6 Add test support for windows MSVC 2015 on appveyor
- build the code with source and execution charset set to utf-8 (required
  for unicode chars in the source code)

- Example/culebra/linenoise.hpp requires being build with UNICODE on windows

  The WIN32 part of that code actually is written against wchar support
  only (e.g. wsprintf, wcstol, ...); but some pieces requires the UNICODE def
  being set explicitely (e.g. GetEnvironmentVariable).

- don't build lint and language subfolders on windows at all (for now)
2016-06-07 11:51:12 +02:00

17 lines
375 B
YAML

clone_depth: 5
environment:
matrix:
- CMAKE_GENERATOR: "Visual Studio 14 2015"
CONFIGURATION: Release
- CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
CONFIGURATION: Release
build_script:
- mkdir build && cd build
- cmake .. -Wno-dev -G"%CMAKE_GENERATOR%"
- cmake --build . --config %CONFIGURATION%
test_script:
- ctest -C %CONFIGURATION% -V