diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-11 02:39:29 +0000 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-20 00:29:05 +0300 |
commit | da3eb22cb8831553ab3ca7d8bb3249bf67b2ec47 (patch) | |
tree | 9ac65c59f2cd6e82a82db194b75429d6b00ea310 /tools/ci/scripts/copymxedlls.sh | |
parent | 85ec852201fa91664a2345cb76aa2a4fadc2ba3a (diff) | |
download | manaverse-da3eb22cb8831553ab3ca7d8bb3249bf67b2ec47.tar.gz manaverse-da3eb22cb8831553ab3ca7d8bb3249bf67b2ec47.tar.bz2 manaverse-da3eb22cb8831553ab3ca7d8bb3249bf67b2ec47.tar.xz manaverse-da3eb22cb8831553ab3ca7d8bb3249bf67b2ec47.zip |
Add azure pipeline for build and run windows tests.
Diffstat (limited to 'tools/ci/scripts/copymxedlls.sh')
-rwxr-xr-x | tools/ci/scripts/copymxedlls.sh | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tools/ci/scripts/copymxedlls.sh b/tools/ci/scripts/copymxedlls.sh new file mode 100755 index 000000000..2ddf16a23 --- /dev/null +++ b/tools/ci/scripts/copymxedlls.sh @@ -0,0 +1,44 @@ +#!/bin/bash + +source ./tools/ci/scripts/winvars.sh || exit 1 +source ./tools/ci/flags/mingw6.sh || exit 1 + +$CC --version +$CXX --version + +export MXE="/mxe/usr/${CROSS}/bin/" +export DSTDIR="$1" + +function mxefile { + cp ${MXE}${1} ${DSTDIR} || exit 1 +} + +function mxefile1 { + cp ${MXE}${1} ${DSTDIR} || true +} + +mxefile gdb.exe +mxefile libcurl-4.dll +mxefile libdl.dll +mxefile libexpat-1.dll +mxefile libfreetype-6.dll +mxefile libiconv-2.dll +mxefile libintl-8.dll +mxefile libjpeg-9.dll +mxefile libogg-0.dll +mxefile libpng16-16.dll +mxefile libreadline6.dll +mxefile libSDL_gfx-15.dll +mxefile libstdc++-6.dll +mxefile libtermcap.dll +mxefile libvorbis-0.dll +mxefile libvorbisfile-3.dll +mxefile libxml2-2.dll +mxefile libwinpthread-1.dll +mxefile SDL.dll +mxefile SDL_image.dll +mxefile SDL_net.dll +mxefile SDL_ttf.dll +mxefile zlib1.dll +mxefile1 libgcc_s_sjlj-1.dll +mxefile1 libgcc_s_seh-1.dll |