Travis: No multithreading make for windows builds

This commit is contained in:
Lukas W
2014-11-16 02:23:29 +01:00
parent 7a62d0ce6f
commit 3aba823ecc

View File

@@ -17,5 +17,5 @@ before_script:
script:
- if [ $TARGET_OS == win32 ]; then ../build_mingw32 || ../build_mingw32; fi
- if [ $TARGET_OS == win64 ]; then ../build_mingw64 || ../build_mingw64; fi
- if [ $TARGET_OS == linux ]; then cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..; fi
- make -j4 VERBOSE=1
- if [ $TARGET_OS == linux ]; then cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. && make -j4 VERBOSE=1; fi
- if [ $TARGET_OS != linux ]; then make; fi