We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a448ce commit 52b0379Copy full SHA for 52b0379
1 file changed
.travis.yml
@@ -0,0 +1,19 @@
1
+env:
2
+ - PLATFORM=x86_64 WINE=wine64
3
+ - PLATFORM=i686 WINE=wine
4
+
5
+language: cpp
6
7
+cache:
8
+ - apt
9
10
+before_install:
11
+ - sudo apt-get update -qq
12
+ - sh -c "if [ '$PLATFORM' = 'i686' ]; then sudo apt-get install -qq wine gcc-mingw-w64-i686 g++-mingw-w64-i686 binutils-mingw-w64-i686 mingw-w64-dev; fi"
13
+ - sh -c "if [ '$PLATFORM' = 'x86_64' ]; then sudo apt-get install -qq wine gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 binutils-mingw-w64-x86-64 mingw-w64-dev; fi"
14
15
+script:
16
+ - make PLATFORM=$PLATFORM
17
+ - cd example/DllLoader
18
+ - WINEPREFIX=`pwd`/$WINE WINEPATH=/usr/lib/gcc/$PLATFORM-w64-mingw32/4.6/ $WINE ./DllLoader.exe
19
+ - WINEPREFIX=`pwd`/$WINE WINEPATH=/usr/lib/gcc/$PLATFORM-w64-mingw32/4.6/ $WINE ./DllLoaderLoader.exe
0 commit comments