mirror of https://gitlab.com/basile.b/dexed.git
fix project cant be run if outputFilename not specified
This commit is contained in:
parent
65b2089d2e
commit
80d60dd453
|
@ -311,7 +311,7 @@ function TCEProject.outputFilename: string;
|
|||
begin
|
||||
result := currentConfiguration.pathsOptions.outputFilename;
|
||||
result := CEMainForm.expandSymbolicString(result);
|
||||
if result <> '' then
|
||||
if result <> '``' then
|
||||
begin
|
||||
if not fileExists(result) then
|
||||
result := getAbsoluteFilename(result);
|
||||
|
|
Loading…
Reference in New Issue