Changeset 107 for trunk/UTarget.pas
- Timestamp:
- May 6, 2019, 1:40:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTarget.pas
r106 r107 411 411 'compiled' + DirectorySeparator + Name + DirectorySeparator + 412 412 ExtractFileNameOnly(ProjectFileName) + SourceExtension; 413 ForceDirectories UTF8(ExtractFilePath(CompiledFile));413 ForceDirectories(ExtractFilePath(CompiledFile)); 414 414 with TStringList.Create do 415 415 try … … 459 459 if not FileExistsUTF8(ExecutorPath) then 460 460 raise Exception.Create(Format(SExecutorNotFound, [ExecutorPath])); 461 if FileExists UTF8(CompiledFile) then461 if FileExists(CompiledFile) then 462 462 try 463 463 Process := TProcess.Create(nil);
Note:
See TracChangeset
for help on using the changeset viewer.