commit 747b3b8daef1b61ae79145425793e3d6aa24fdde Author: Bergmann89 Date: Tue Oct 6 19:18:40 2015 +0200 * initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b921ed9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +lib/ +bin/ +debug/ +*.so +*.lps +*.exe +*.res +*.ico +*.dbg +*.dll +*.zip + diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..782dfea --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "TextSuite"] + path = TextSuite + url = ../textsuite.git diff --git a/TextSuite b/TextSuite new file mode 160000 index 0000000..47bb935 --- /dev/null +++ b/TextSuite @@ -0,0 +1 @@ +Subproject commit 47bb93569afcfc25da2aae5c7dd49d7a122fde21 diff --git a/libTextSuite.lpi b/libTextSuite.lpi new file mode 100644 index 0000000..264397d --- /dev/null +++ b/libTextSuite.lpi @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + <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="libTextSuite.lpr"/> + <IsPartOfProject Value="True"/> + <UnitName Value="libTextSuite"/> + </Unit0> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <Target> + <Filename Value="libTextSuite"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <CodeGeneration> + <RelocatableUnit Value="True"/> + </CodeGeneration> + <Linking> + <Options> + <ExecutableType Value="Library"/> + </Options> + </Linking> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/libTextSuite.lpr b/libTextSuite.lpr new file mode 100644 index 0000000..b0da502 --- /dev/null +++ b/libTextSuite.lpr @@ -0,0 +1,10 @@ +library libTextSuite; + +{$mode objfpc}{$H+} + +uses + Classes; + +begin +end. +