Fix external deps .dll not being copied to target folders

This commit is contained in:
Jérôme Leclercq 2020-08-27 22:35:55 +02:00
parent 4aee707bb4
commit 391037d9e3
4 changed files with 16 additions and 0 deletions

View File

@ -31,3 +31,7 @@ MODULE.OsFiles.Posix = {
"../src/Nazara/Audio/Posix/**.hpp",
"../src/Nazara/Audio/Posix/**.cpp"
}
MODULE.DynLib = {
"soft_oal"
}

View File

@ -6,3 +6,7 @@ MODULE.Libraries = {
"NazaraCore",
"chipmunk"
}
MODULE.DynLib = {
"chipmunk"
}

View File

@ -4,3 +4,7 @@ MODULE.Libraries = {
"NazaraCore",
"Newton" -- Newton Game Dynamics
}
MODULE.DynLib = {
"Newton"
}

View File

@ -25,3 +25,7 @@ MODULE.OsDefines.Posix = {
"SDL_VIDEO_DRIVER_X11=1",
"SDL_VIDEO_DRIVER_WAYLAND=1",
}
MODULE.DynLib = {
"SDL2"
}