Changeset 133 for trunk/Target
- Timestamp:
- Mar 4, 2022, 10:57:08 PM (3 years ago)
- Location:
- trunk/Target
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTargetC.pas
r126 r133 31 31 begin 32 32 inherited; 33 Name := 'C';34 SourceExtension := '.c';35 ImageIndex := 23;36 Capabilities := [tcCompile, tcRun];33 FName := 'C'; 34 FSourceExtension := '.c'; 35 FImageIndex := 23; 36 FCapabilities := [tcCompile, tcRun]; 37 37 {$IFDEF WINDOWS} 38 38 CompilerPath := 'c:\Program Files\MinGW\bin\gcc.exe'; … … 42 42 {$IFDEF UNIX} 43 43 CompilerPath := '/usr/bin/gcc'; 44 CompiledExtension := '';45 RunExtension := '';44 FCompiledExtension := ''; 45 FRunExtension := ''; 46 46 {$ENDIF} 47 47 end; -
trunk/Target/UTargetCSharp.pas
r126 r133 29 29 begin 30 30 inherited; 31 Name := 'C#';32 SourceExtension := '.cs';33 CompiledExtension := '.exe';34 RunExtension := '';35 ImageIndex := 27;36 Capabilities := [tcCompile, tcRun];31 FName := 'C#'; 32 FSourceExtension := '.cs'; 33 FCompiledExtension := '.exe'; 34 FRunExtension := ''; 35 FImageIndex := 27; 36 FCapabilities := [tcCompile, tcRun]; 37 37 {$IFDEF WINDOWS} 38 38 CompilerPath := 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Roslyn\csc.exe'; -
trunk/Target/UTargetDelphi.pas
r126 r133 28 28 begin 29 29 inherited; 30 Name := 'Delphi';31 SourceExtension := '.pas';32 ImageIndex := 22;33 Capabilities := [tcCompile, tcRun];30 FName := 'Delphi'; 31 FSourceExtension := '.pas'; 32 FImageIndex := 22; 33 FCapabilities := [tcCompile, tcRun]; 34 34 {$IFDEF Windows} 35 35 CompilerPath := 'c:\Program Files\Embarcadero\RAD Studio\9.0\bin\DCC32.EXE'; -
trunk/Target/UTargetFPC.pas
r126 r133 28 28 begin 29 29 inherited; 30 Name := 'FPC';31 SourceExtension := '.pas';32 ImageIndex := 22;33 Capabilities := [tcCompile, tcRun];30 FName := 'FPC'; 31 FSourceExtension := '.pas'; 32 FImageIndex := 22; 33 FCapabilities := [tcCompile, tcRun]; 34 34 {$IFDEF WINDOWS} 35 35 CompiledExtension := '.exe'; … … 38 38 {$ENDIF} 39 39 {$IFDEF UNIX} 40 CompiledExtension := '';40 FCompiledExtension := ''; 41 41 CompilerPath := '/usr/bin/fpc'; 42 RunExtension := '';42 FRunExtension := ''; 43 43 {$ENDIF} 44 44 end; -
trunk/Target/UTargetInterpretter.pas
r128 r133 448 448 begin 449 449 inherited; 450 Name := 'Interpretter';451 ImageIndex := 25;452 Capabilities := [tcRun, tcPause, tcStop, tcCompile, tcStepOut, tcStepInto,450 FName := 'Interpretter'; 451 FImageIndex := 25; 452 FCapabilities := [tcRun, tcPause, tcStop, tcCompile, tcStepOut, tcStepInto, 453 453 tcStepOver, tcRunToCursor]; 454 454 // Base commands -
trunk/Target/UTargetJava.pas
r126 r133 29 29 begin 30 30 inherited; 31 Name := 'Java';32 SourceExtension := '.java';33 CompiledExtension := '.class';34 RunExtension := '';35 ImageIndex := 24;36 Capabilities := [tcCompile, tcRun];31 FName := 'Java'; 32 FSourceExtension := '.java'; 33 FCompiledExtension := '.class'; 34 FRunExtension := ''; 35 FImageIndex := 24; 36 FCapabilities := [tcCompile, tcRun]; 37 37 {$IFDEF WINDOWS} 38 38 CompilerPath := 'c:\Program Files\Java\bin\javac.exe'; -
trunk/Target/UTargetJavascript.pas
r126 r133 32 32 begin 33 33 inherited; 34 Name := 'Javascript';35 SourceExtension := '.js';36 ImageIndex := 28;37 Capabilities := [tcCompile, tcRun];34 FName := 'Javascript'; 35 FSourceExtension := '.js'; 36 FImageIndex := 28; 37 FCapabilities := [tcCompile, tcRun]; 38 38 CompilerPath := ''; 39 CompiledExtension := '';40 RunExtension := '';39 FCompiledExtension := ''; 40 FRunExtension := ''; 41 41 end; 42 42 -
trunk/Target/UTargetPHP.pas
r126 r133 29 29 begin 30 30 inherited; 31 Name := 'PHP';32 SourceExtension := '.php';33 RunExtension := '.php';34 CompiledExtension := '.php';35 ImageIndex := 21;36 Capabilities := [tcCompile, tcRun];31 FName := 'PHP'; 32 FSourceExtension := '.php'; 33 FRunExtension := '.php'; 34 FCompiledExtension := '.php'; 35 FImageIndex := 21; 36 FCapabilities := [tcCompile, tcRun]; 37 37 {$IFDEF WINDOWS} 38 38 CompilerPath := ''; -
trunk/Target/UTargetPython.pas
r126 r133 29 29 begin 30 30 inherited; 31 Name := 'Python';32 SourceExtension := '.py';33 RunExtension := '.py';34 CompiledExtension := '.py';35 ImageIndex := 26;36 Capabilities := [tcCompile, tcRun];31 FName := 'Python'; 32 FSourceExtension := '.py'; 33 FRunExtension := '.py'; 34 FCompiledExtension := '.py'; 35 FImageIndex := 26; 36 FCapabilities := [tcCompile, tcRun]; 37 37 {$IFDEF WINDOWS} 38 38 CompilerPath := '';
Note:
See TracChangeset
for help on using the changeset viewer.