summaryrefslogtreecommitdiff
path: root/appveyor_minGW.bat
diff options
context:
space:
mode:
authorChris Dickens <christopher.a.dickens@gmail.com>2020-01-20 18:02:19 -0800
committerChris Dickens <christopher.a.dickens@gmail.com>2020-01-20 18:02:19 -0800
commitf90d07613c7a86eca85df9f8209ce586ce70ecf6 (patch)
tree68cd745d255c85b86418d4cb64fc6a47547d1b6b /appveyor_minGW.bat
parent9eda802d947d9c4212eb3f821fa51956029dade0 (diff)
downloadlibusb-f90d07613c7a86eca85df9f8209ce586ce70ecf6.tar.gz
Windows: Remove support for WinCE and Visual Studio older than 2013
There appears to be no need for the WinCE backend anymore, and it is increasingly difficult to keep healthy as the rest of the library changes. Require at least Visual Studio 2013 to compile. This simplifies matters as there is some semblance of C99 support there. Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
Diffstat (limited to 'appveyor_minGW.bat')
-rw-r--r--appveyor_minGW.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor_minGW.bat b/appveyor_minGW.bat
index bdb4750..3ed6272 100644
--- a/appveyor_minGW.bat
+++ b/appveyor_minGW.bat
@@ -6,7 +6,7 @@ if [%Configuration%] NEQ [Release] exit 0
if [%Platform%] NEQ [x64] goto Win32
C:\msys64\usr\bin\bash -e -l -c "./bootstrap.sh" || exit /B
C:\msys64\usr\bin\bash -e -l -c "mkdir build-x64" || exit /B
-C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && ../configure --prefix=/mingw64 --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32" || exit /B
+C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && ../configure --prefix=/mingw64 --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --enable-examples-build --enable-tests-build" || exit /B
C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && make -j4" || exit /B
C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && make install" || exit /B
@@ -14,6 +14,6 @@ C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && make install" || exit /B
if [%Platform%] NEQ [Win32] exit 0
C:\msys64\usr\bin\bash -e -l -c "./bootstrap.sh" || exit /B
C:\msys64\usr\bin\bash -e -l -c "mkdir build-Win32" || exit /B
-C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && ../configure --prefix=/mingw32 --build=i686-w64-mingw32 --host=i686-w64-mingw32" || exit /B
+C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && ../configure --prefix=/mingw32 --build=i686-w64-mingw32 --host=i686-w64-mingw32 --enable-examples-build --enable-tests-build" || exit /B
C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && make -j4" || exit /B
-C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && make install" || exit /B
+C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && make install" || exit /B \ No newline at end of file