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
|
begin
|
||||||
result := currentConfiguration.pathsOptions.outputFilename;
|
result := currentConfiguration.pathsOptions.outputFilename;
|
||||||
result := CEMainForm.expandSymbolicString(result);
|
result := CEMainForm.expandSymbolicString(result);
|
||||||
if result <> '' then
|
if result <> '``' then
|
||||||
begin
|
begin
|
||||||
if not fileExists(result) then
|
if not fileExists(result) then
|
||||||
result := getAbsoluteFilename(result);
|
result := getAbsoluteFilename(result);
|
||||||
|
|
Loading…
Reference in New Issue