diff options
author | Zied Aouini <aouinizied@gmail.com> | 2019-12-16 01:10:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-16 01:10:26 +0100 |
commit | 1097f5488de1b05351376d18db95df60fe960f37 (patch) | |
tree | 53b8a65420f9076aaecdfbb2f694bd6aaf8ce1d0 | |
parent | b90410e335d7fd164815929005255a6791351a37 (diff) |
Add .appveyor.yml
-rw-r--r-- | .appveyor.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 000000000..0d7e18d83 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,14 @@ +version: 3.1.{build} +environment: + matrix: + - COMPILER: mingw + MINGW_DIR: c:\msys64\mingw32 + +before_build: + - set Path=%MINGW_DIR%\bin;%Path% + +build_script: + - set Path=%MINGW_DIR%\bin;c:\msys64\usr\bin; + - bash autogen.sh + - cd src/lib + - make |