* Migrate the project from C++14 to C++11. All tests passed. * Remove CONSTEXPR_SPECIFIER macro cause fall back to const in c++11. * Remove C++14 code in test/main.cpp Change sample code from C++14 to C++11 in README.md * Fixed warnings in old-version gcc since C++11 doesn't support empty braced initialization well. * Fixed warnings in old-version gcc since C++11 doesn't support empty braced initialization well. * renaming * fixed conan cpp * fixed appveyor configuration * skip tests from libuv * Add line-feed to tcp.hpp:21
23 lines
366 B
YAML
23 lines
366 B
YAML
# can use variables like {build} and {branch}
|
|
version: 1.0.{build}
|
|
|
|
image: Visual Studio 2017
|
|
|
|
environment:
|
|
BUILD_DIR: "%APPVEYOR_BUILD_FOLDER%\\build"
|
|
|
|
platform:
|
|
- Win32
|
|
|
|
configuration:
|
|
- Release
|
|
|
|
before_build:
|
|
- cd %BUILD_DIR%
|
|
- cmake .. -DBUILD_TESTING=ON -G"Visual Studio 15 2017"
|
|
|
|
build:
|
|
parallel: true
|
|
project: build/uvw.sln
|
|
verbosity: minimal
|