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
|
if assigned(conf) then
|
||||||
setFrom(conf);
|
setFrom(conf);
|
||||||
pathPart := TrimRightSet(pathPart, ['/','\']);
|
pathPart := TrimRightSet(pathPart, ['/','\']);
|
||||||
|
if fBinKind = TProjectBinaryKind.staticlib then
|
||||||
|
namePart := 'lib' + namePart;
|
||||||
fOutputFileName:= pathPart + DirectorySeparator + namePart;
|
fOutputFileName:= pathPart + DirectorySeparator + namePart;
|
||||||
patchPlateformPath(fOutputFileName);
|
patchPlateformPath(fOutputFileName);
|
||||||
fOutputFileName := expandFilenameEx(fBasePath, fOutputFileName);
|
fOutputFileName := expandFilenameEx(fBasePath, fOutputFileName);
|
||||||
|
|
Loading…
Reference in New Issue