/srv/osrm/osrm-backend/third_party/vtzero
NameSizeModeActions
cmake/-0755rm
doc/-0755rm
examples/-0755rm
include/-0755rm
include-external/-0755rm
test/-0755rm
.clang-tidy17650644editdlrm
.gitignore60644editdlrm
.gitmodules1080644editdlrm
.travis.yml56650644editdlrm
.ycm_extra_conf.py11990644editdlrm
appveyor.yml19410644editdlrm
build-appveyor.bat13860644editdlrm
build-msys2.bat4230644editdlrm
CHANGELOG.md10030644editdlrm
CMakeLists.txt47900644editdlrm
codecov.yml300644editdlrm
CONTRIBUTING.md7660644editdlrm
EXTERNAL_LICENSES.txt14120644editdlrm
LICENSE13110644editdlrm
README.md22370644editdlrm
Edit: /srv/osrm/osrm-backend/third_party/vtzero/appveyor.yml (1941B)
#----------------------------------------------------------------------------- # # Configuration for continuous integration service at appveyor.com # #----------------------------------------------------------------------------- platform: x64 image: Visual Studio 2017 clone_depth: 1 #----------------------------------------------------------------------------- environment: matrix: - config: MSYS2 autocrlf: true - config: Debug autocrlf: true - config: RelWithDebInfo autocrlf: true - config: Debug autocrlf: false - config: RelWithDebInfo autocrlf: false #----------------------------------------------------------------------------- init: - git config --global core.autocrlf %autocrlf% - git config --get core.autocrlf # The option --ask=20 is a workaround for a problem with the MSYS2 update # process. Without it the following error is printed and the appveyor script # halts: "msys2-runtime and catgets are in conflict. Remove catgets?" # See also: https://github.com/Alexpux/MSYS2-packages/issues/1141 install: - cd c:\projects - git clone --depth=1 https://github.com/mapbox/protozero - if [%config%]==[MSYS2] ( C:\msys64\usr\bin\pacman --noconfirm --sync --refresh --refresh --sysupgrade --sysupgrade --ask=20 && C:\msys64\usr\bin\pacman -Rc --noconfirm mingw-w64-x86_64-gcc-libs ) build_script: - cd c:\projects\vtzero - git submodule update --init - if [%config%]==[MSYS2] ( build-msys2.bat ) else ( build-appveyor.bat ) # remove garbage VS messages # https://help.appveyor.com/discussions/problems/4569-the-target-_convertpdbfiles-listed-in-a-beforetargets-attribute-at-c-does-not-exist-in-the-project-and-will-be-ignored before_build: - del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets" #-----------------------------------------------------------------------------