Life is pain

This commit is contained in:
Clownacy 2020-01-23 17:00:12 +00:00
parent e504f07650
commit 1b64bb71b7

View file

@ -73,13 +73,14 @@ before_install:
- echo $MAKE_BUILD_TYPE - echo $MAKE_BUILD_TYPE
# Define CC and CXX # Define CC and CXX
if ["$SIXTY_FOUR_BIT" == "true"]; then - |
export CC="x86_64-w64-mingw32-gcc" if ["$SIXTY_FOUR_BIT" == "true"]; then
export CXX="x86_64-w64-mingw32-g++" export CC="x86_64-w64-mingw32-gcc"
else export CXX="x86_64-w64-mingw32-g++"
export CC="i686-w64-mingw32-gcc" else
export CXX="i686-w64-mingw32-g++" export CC="i686-w64-mingw32-gcc"
fi export CXX="i686-w64-mingw32-g++"
fi
# Define WINDRES # Define WINDRES
- | - |