Build/Package: Copy .pdb in the bin directory

This commit is contained in:
Jérôme Leclercq 2017-04-05 10:10:42 +02:00
parent bb272c57f5
commit eac2919551
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ ACTION.Function = function ()
local exeFileExt
local exeFilterFunc
if (os.is("windows")) then
binFileMasks = {"**.dll"}
libFileMasks = {"**.lib", "**.a", "**.pdb"}
binFileMasks = {"**.dll", "**.pdb"}
libFileMasks = {"**.lib", "**.a"}
exeFileExt = ".exe"
exeFilterFunc = function (filePath) return true end
else