Show info about copying DLLs #847

This commit is contained in:
Cong
2025-03-08 20:38:56 +11:00
parent afec4b47f6
commit 6ba349afa4
3 changed files with 3 additions and 0 deletions

View File

@@ -138,6 +138,7 @@ jobs:
7z x -y sdl2_image.zip
7z x -y sdl2_mixer.zip
copy .\optional\*.dll .
dir
- name: Make package on tags
if: startsWith(github.ref, 'refs/tags/')

View File

@@ -138,6 +138,7 @@ jobs:
7z x -y sdl2_image.zip
7z x -y sdl2_mixer.zip
copy .\optional\*.dll .
dir
- name: Make package on tags
if: startsWith(github.ref, 'refs/tags/')

View File

@@ -248,6 +248,7 @@ if(UNIX AND NOT APPLE AND NOT BEOS AND NOT HAIKU)
elseif(WIN32)
# Package for Windows
file(GLOB DLLS "${CMAKE_SOURCE_DIR}/dll/*.dll")
message("Found DLL files ${DLLS}")
foreach(DLL ${DLLS})
install(FILES "${DLL}" DESTINATION ${INSTALL_PREFIX}/bin)
endforeach()