1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<?xml version="1.0" encoding="utf-8"?>
<CodeLite_Project Name="Static library" InternalType="Library" IconIndex="archive16">
<Description>
A project that produces a static library (archive).
Note that this project is set to work with the GNU toolchain (gdb, g++, ar)
</Description>
<VirtualDirectory Name="src"/>
<VirtualDirectory Name="include"/>
<Dependencies/>
<Settings Type="Static Library">
<Configuration Name="Debug" CompilerType="gnu g++" DebuggerType="GNU gdb debugger">
<General OutputFile="$(IntermediateDirectory)/lib$(ProjectName).a" IntermediateDirectory="./Debug" Command="" CommandArguments="" WorkingDirectory="$(IntermediateDirectory)"/>
<Compiler Required="yes" Options="-g">
<IncludePath Value="."/>
</Compiler>
<Linker Required="yes" Options=""/>
<ResourceCompiler Required="no" Options=""/>
<PreBuild/>
<PostBuild/>
<CustomBuild Enabled="no">
<CleanCommand></CleanCommand>
<BuildCommand></BuildCommand>
</CustomBuild>
</Configuration>
<Configuration Name="Release" CompilerType="gnu g++" DebuggerType="GNU gdb debugger">
<General OutputFile="$(IntermediateDirectory)/lib$(ProjectName).a" IntermediateDirectory="./Release" Command="" CommandArguments="" WorkingDirectory="$(IntermediateDirectory)"/>
<Compiler Required="yes" Options="">
<IncludePath Value="."/>
</Compiler>
<Linker Required="yes" Options="">
</Linker>
<ResourceCompiler Required="no" Options=""/>
<PreBuild/>
<PostBuild/>
<CustomBuild Enabled="no">
<CleanCommand></CleanCommand>
<BuildCommand></BuildCommand>
</CustomBuild>
</Configuration>
</Settings>
</CodeLite_Project>
|