summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore6
-rw-r--r--appveyor.yml8
2 files changed, 11 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index fb3b92b..530234e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,11 +1,15 @@
.deps/
.libs/
-*~
*.BAK
+*.a
+*.dll
+*.exe
*.la
*.lo
*.o
*.pc
+*.so
+*~
/CMakeCache.txt
/CMakeFiles/
/CTestTestfile.cmake
diff --git a/appveyor.yml b/appveyor.yml
index 88f6e6a..24d24d2 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -19,7 +19,11 @@ build_script:
# Autoconf based in-source build and tests under Cygwin using gcc
#
-# 32-bit
+# 32-bit cygwin build
- C:\cygwin\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure && make && make test && make distclean"
-# 64-bit
+# 64-bit cygwin build
- C:\cygwin64\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure && make && make test && make distclean"
+# 32-bit mingw-w64 build
+- C:\cygwin\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure --host=i686-w64-mingw32 --target=i686-w64-mingw32 && make && make test && make distclean"
+# 64-bit mingw-w64 build
+- C:\cygwin64\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 && make && make test && make distclean"