From 9abaa19e9d612d3e83515a5dee2da94a2bdd51c9 Mon Sep 17 00:00:00 2001 From: Valentin Vanelslande Date: Mon, 23 Oct 2017 14:38:35 -0500 Subject: [PATCH] Update appveyor.yml --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 06ea095ce..bcb561a25 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -112,6 +112,8 @@ after_build: # copy the compiled binaries and other release files to the release folder Get-ChildItem "$CMAKE_BINARY_DIR" -Recurse -Filter "citra*.exe" | Copy-Item -destination $RELEASE_DIST + # copy SDL2 DLL + Copy-Item -path "$CMAKE_SOURCE_DIR/dlls/SDL2.dll" -destination "$RELEASE_DIST/SDL2.dll" # copy the libcurl dll Get-ChildItem "$CMAKE_BINARY_DIR" -Recurse -Filter "libcurl.dll" | Copy-Item -destination $RELEASE_DIST Copy-Item -path "$CMAKE_SOURCE_DIR/license.txt" -destination $RELEASE_DIST @@ -124,7 +126,7 @@ after_build: "libfreetype-*.dll","libglib-*.dll","libgobject-*.dll","libgraphite2.dll","libiconv-*.dll", "libharfbuzz-*.dll","libintl-*.dll","libpcre-*.dll","libpcre16-*.dll","libpcre2-16-*.dll","libpng16-*.dll", # Runtime/Other dependencies - "libgcc_s_seh-*.dll","libstdc++-*.dll","libwinpthread-*.dll","SDL2.dll","zlib1.dll" + "libgcc_s_seh-*.dll","libstdc++-*.dll","libwinpthread-*.dll","zlib1.dll" foreach ($file in $MingwDLLs) { Copy-Item -path "C:/msys64/mingw64/bin/$file" -force -destination "$RELEASE_DIST" }