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 43
|
<?xml version="1.0" encoding="utf-8"?>
<CodeLite_Project Name="Static library (wxWidgets enabled)" InternalType="Library" IconIndex="archive16">
<Description>
A project that produces a static library (archive).
The settings of this project already includes the paths required by wxWidgets using the wx-config tool.
Note that this project is set to work with the GNU toolchain (gdb, g++)
</Description>
<VirtualDirectory Name="src">
<File Name="main.cpp"/>
</VirtualDirectory>
<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;-O0;-Wall;$(shell wx-config --cxxflags --debug=yes --unicode=yes)">
<IncludePath Value="."/>
</Compiler>
<Linker Required="yes" Options="$(shell wx-config --debug=yes --libs --unicode=yes)"/>
<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="-O2;-Wall;$(shell wx-config --cxxflags --debug=no --unicode=yes);">
<IncludePath Value="."/>
<Preprocessor Value="NDEBUG"/>
</Compiler>
<Linker Required="yes" Options="-s;$(shell wx-config --libs --debug=no --unicode=yes)"/>
<ResourceCompiler Required="no" Options=""/>
<PreBuild/>
<PostBuild/>
<CustomBuild Enabled="no">
<CleanCommand></CleanCommand>
<BuildCommand></BuildCommand>
</CustomBuild>
</Configuration>
</Settings>
</CodeLite_Project>
|