mirror of https://gitlab.com/basile.b/dexed.git
symstrings, DUB projects, CPR expands to the same as CPP
This commit is contained in:
parent
5da8863db3
commit
0f90db2caf
|
@ -206,6 +206,7 @@ begin
|
||||||
fSymbols[CPP] := fSymbols[CPF].extractFilePath;
|
fSymbols[CPP] := fSymbols[CPF].extractFilePath;
|
||||||
fSymbols[CPN] := stripFileExt(fSymbols[CPF].extractFileName);
|
fSymbols[CPN] := stripFileExt(fSymbols[CPF].extractFileName);
|
||||||
fSymbols[CPO] := fProjInterface.outputFilename;
|
fSymbols[CPO] := fProjInterface.outputFilename;
|
||||||
|
fSymbols[CPR] := fSymbols[CPP];
|
||||||
if fProjInterface.sourcesCount <> 0 then
|
if fProjInterface.sourcesCount <> 0 then
|
||||||
begin
|
begin
|
||||||
str := TStringList.Create;
|
str := TStringList.Create;
|
||||||
|
@ -236,6 +237,10 @@ begin
|
||||||
fSymbols[CPR] := fSymbols[CPP];
|
fSymbols[CPR] := fSymbols[CPP];
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
//
|
||||||
|
for e := FirstVariableSymbol to high(TCESymbol) do
|
||||||
|
if fSymbols[e].isEmpty then
|
||||||
|
fSymbols[e] := na;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TCESymbolExpander.singleServiceName: string;
|
function TCESymbolExpander.singleServiceName: string;
|
||||||
|
|
Loading…
Reference in New Issue