Changeset 106 for trunk/UTarget.pas


Ignore:
Timestamp:
May 6, 2019, 11:03:00 AM (5 years ago)
Author:
chronos
Message:
  • Added: TargetCode form use SynEdit for syntax highlighting.
  • Fixed: Do not show error if specific target doesn't have assigned compiler. Not all targets use compiler. Some of them are just interpreted.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTarget.pas

    r93 r106  
    419419    Free;
    420420  end;
    421   if FileExistsUTF8(CompilerPath) then
     421  if CompilerPath <> '' then begin;
     422    if FileExistsUTF8(CompilerPath) then
    422423    try
    423424      Process := TProcess.Create(nil);
     
    439440      Process.Free;
    440441    end else raise Exception.Create(Format(SCompilerNotFound, [CompilerPath]));
     442  end;
    441443end;
    442444
Note: See TracChangeset for help on using the changeset viewer.