fix project cant be run if outputFilename not specified

This commit is contained in:
Basile Burg 2014-11-16 13:19:07 +01:00
parent 65b2089d2e
commit 80d60dd453
1 changed files with 1 additions and 1 deletions

View File

@ -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);