Skip to content

Commit

Permalink
Added and built other platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
mrunion committed Dec 18, 2023
1 parent fd5b6b5 commit 83e2f24
Show file tree
Hide file tree
Showing 3 changed files with 149 additions and 5 deletions.
146 changes: 145 additions & 1 deletion flaxlauncherlite.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<CompilerOptions>
<Version Value="11"/>
<Target>
<Filename Value="bin/debug/$(TargetCPU)-$(TargetOS)/flaxlauncherlite"/>
<Filename Value="bin/release/$(TargetCPU)-$(TargetOS)/flaxlauncherlite"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/>
Expand All @@ -167,6 +167,150 @@
</Linking>
</CompilerOptions>
</Item>
<Item Name="Debug MacOS x86">
<CompilerOptions>
<Version Value="11"/>
<Target>
<Filename Value="bin/debug/$(TargetCPU)-$(TargetOS)/flaxlauncherlite"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Parsing>
<SyntaxOptions>
<IncludeAssertionCode Value="True"/>
</SyntaxOptions>
</Parsing>
<CodeGeneration>
<Checks>
<IOChecks Value="True"/>
<RangeChecks Value="True"/>
<OverflowChecks Value="True"/>
<StackChecks Value="True"/>
</Checks>
<VerifyObjMethodCallValidity Value="True"/>
<TargetCPU Value="x86_64"/>
<TargetOS Value="darwin"/>
</CodeGeneration>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf3"/>
<UseHeaptrc Value="True"/>
<TrashVariables Value="True"/>
<UseExternalDbgSyms Value="True"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
</Win32>
</Options>
</Linking>
</CompilerOptions>
</Item>
<Item Name="Release MacOS x86">
<CompilerOptions>
<Version Value="11"/>
<Target>
<Filename Value="bin/release/$(TargetCPU)-$(TargetOS)/flaxlauncherlite"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<CodeGeneration>
<SmartLinkUnit Value="True"/>
<TargetCPU Value="x86_64"/>
<TargetOS Value="darwin"/>
<Optimizations>
<OptimizationLevel Value="3"/>
</Optimizations>
</CodeGeneration>
<Linking>
<Debugging>
<GenerateDebugInfo Value="False"/>
</Debugging>
<LinkSmart Value="True"/>
<Options>
<Win32>
<GraphicApplication Value="True"/>
</Win32>
</Options>
</Linking>
</CompilerOptions>
</Item>
<Item Name="Debug Linux x86">
<CompilerOptions>
<Version Value="11"/>
<Target>
<Filename Value="bin/debug/$(TargetCPU)-$(TargetOS)/flaxlauncherlite"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Parsing>
<SyntaxOptions>
<IncludeAssertionCode Value="True"/>
</SyntaxOptions>
</Parsing>
<CodeGeneration>
<Checks>
<IOChecks Value="True"/>
<RangeChecks Value="True"/>
<OverflowChecks Value="True"/>
<StackChecks Value="True"/>
</Checks>
<VerifyObjMethodCallValidity Value="True"/>
<TargetCPU Value="x86_64"/>
<TargetOS Value="linux"/>
</CodeGeneration>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf3"/>
<UseHeaptrc Value="True"/>
<TrashVariables Value="True"/>
<UseExternalDbgSyms Value="True"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
</Win32>
</Options>
</Linking>
</CompilerOptions>
</Item>
<Item Name="Release Linux x86">
<CompilerOptions>
<Version Value="11"/>
<Target>
<Filename Value="bin/release/$(TargetCPU)-$(TargetOS)/flaxlauncherlite"/>
</Target>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<CodeGeneration>
<SmartLinkUnit Value="True"/>
<TargetCPU Value="x86_64"/>
<TargetOS Value="linux"/>
<Optimizations>
<OptimizationLevel Value="3"/>
</Optimizations>
</CodeGeneration>
<Linking>
<Debugging>
<GenerateDebugInfo Value="False"/>
</Debugging>
<LinkSmart Value="True"/>
<Options>
<Win32>
<GraphicApplication Value="True"/>
</Win32>
</Options>
</Linking>
</CompilerOptions>
</Item>
</BuildModes>
<PublishOptions>
<Version Value="2"/>
Expand Down
4 changes: 2 additions & 2 deletions flaxlauncherlite.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

begin
RequireDerivedFormResource := True;
Application.Title := 'Flax Launcher Lite';
Application.Scaled := True;
Application.Title:='Flax Launcher Lite';
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TFormMain, FormMain);
Application.CreateForm(TFormAddEngine, FormAddEngine);
Expand Down
4 changes: 2 additions & 2 deletions unit_mainform.lfm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object FormMain: TFormMain
Left = 388
Left = 324
Height = 353
Top = 174
Top = 136
Width = 634
BorderStyle = bsDialog
Caption = 'Flax Launcher Lite'
Expand Down

0 comments on commit 83e2f24

Please sign in to comment.