mirror of https://gitlab.com/basile.b/dexed.git
fix, dubproject, output binary name missed the lib prefix when output binary kind was staticlib
This commit is contained in:
parent
b0229c846d
commit
28f9e86b84
|
@ -707,6 +707,8 @@ begin
|
|||
if assigned(conf) then
|
||||
setFrom(conf);
|
||||
pathPart := TrimRightSet(pathPart, ['/','\']);
|
||||
if fBinKind = TProjectBinaryKind.staticlib then
|
||||
namePart := 'lib' + namePart;
|
||||
fOutputFileName:= pathPart + DirectorySeparator + namePart;
|
||||
patchPlateformPath(fOutputFileName);
|
||||
fOutputFileName := expandFilenameEx(fBasePath, fOutputFileName);
|
||||
|
|
Loading…
Reference in New Issue