Changeset 108 for trunk/UTarget.pas
- Timestamp:
- May 6, 2019, 1:41:36 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTarget.pas
r107 r108 420 420 end; 421 421 if CompilerPath <> '' then begin; 422 if FileExists UTF8(CompilerPath) then422 if FileExists(CompilerPath) then 423 423 try 424 424 Process := TProcess.Create(nil); … … 457 457 'compiled' + DirectorySeparator + Name + DirectorySeparator + 458 458 ExtractFileNameOnly(ProjectFileName) + RunExtension; 459 if not FileExists UTF8(ExecutorPath) then459 if not FileExists(ExecutorPath) then 460 460 raise Exception.Create(Format(SExecutorNotFound, [ExecutorPath])); 461 461 if FileExists(CompiledFile) then
Note:
See TracChangeset
for help on using the changeset viewer.