From eac291955136bd4745e5ca3ceda6517075d7ab90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Wed, 5 Apr 2017 10:10:42 +0200 Subject: [PATCH] Build/Package: Copy .pdb in the bin directory --- build/scripts/actions/package.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/scripts/actions/package.lua b/build/scripts/actions/package.lua index cbdae329c..bc86c4ba4 100644 --- a/build/scripts/actions/package.lua +++ b/build/scripts/actions/package.lua @@ -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