From 111f0f170a1ea9e8a6313d42621c68084ce664c5 Mon Sep 17 00:00:00 2001 From: binarymaster Date: Mon, 20 Jun 2016 01:44:33 +0300 Subject: [PATCH] Add Lazarus .lpi project and .gitignore files --- .gitignore | 18 ++++++++++ src/game/Doom2DF.lpi | 83 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 .gitignore create mode 100644 src/game/Doom2DF.lpi diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3f29eae --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# Project-specific +bin/ +tmp/ + +# Precompiled and Delphi-specific files +# without *.res +*.obj +*.dcu +*.cbk +*.dof +*.ddp + +# Commonly used temporary files +~* +*.~* +*.tmp +*.bak +*.lps diff --git a/src/game/Doom2DF.lpi b/src/game/Doom2DF.lpi new file mode 100644 index 0000000..3d42f1c --- /dev/null +++ b/src/game/Doom2DF.lpi @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + <UseAppBundle Value="False"/> + <ResourceType Value="res"/> + </General> + <i18n> + <EnableI18N LFM="False"/> + </i18n> + <VersionInfo> + <StringTable ProductVersion=""/> + </VersionInfo> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + </PublishOptions> + <RunParams> + <local> + <FormatVersion Value="1"/> + </local> + </RunParams> + <Units Count="1"> + <Unit0> + <Filename Value="Doom2DF.dpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <Target> + <Filename Value="..\..\bin\Doom2DF"/> + </Target> + <SearchPaths> + <IncludeFiles Value="..\lib\vampimg;..\lib\vampimg\JpegLib;..\lib\vampimg\ZLib;$(ProjOutDir)"/> + <OtherUnitFiles Value="..\lib\vampimg;..\lib\vampimg\JpegLib;..\lib\vampimg\ZLib"/> + <UnitOutputDirectory Value="..\..\tmp"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + </SyntaxOptions> + </Parsing> + <CodeGeneration> + <Optimizations> + <OptimizationLevel Value="2"/> + </Optimizations> + </CodeGeneration> + <Other> + <CompilerMessages> + <MsgFileName Value=""/> + </CompilerMessages> + <CustomOptions Value="-dUSE_FMOD"/> + <CompilerPath Value="$(CompPath)"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> -- 2.29.2