forked from mia/Aegisub
39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<_PropertySheetDisplayName>wxWidgets support</_PropertySheetDisplayName>
|
|
</PropertyGroup>
|
|
|
|
<!-- Some helper affixes -->
|
|
<PropertyGroup>
|
|
<WxLibDbgSuffix Condition="'$(Configuration)'=='Debug'">d</WxLibDbgSuffix>
|
|
<WxLibDbgSuffix Condition="'$(Configuration)'=='Release'"></WxLibDbgSuffix>
|
|
</PropertyGroup>
|
|
|
|
<!-- Tell the compiler where to search for wx headers and libraries -->
|
|
<PropertyGroup>
|
|
<IncludePath>$(WxLibraryPath)\mswu$(WxLibDbgSuffix)\;$(WxIncludePath);$(IncludePath)</IncludePath>
|
|
<LibraryPath>$(WxLibraryPath);$(LibraryPath)</LibraryPath>
|
|
</PropertyGroup>
|
|
|
|
<!-- Tell the linker to use the appropriate wx libraries -->
|
|
<ItemDefinitionGroup>
|
|
<Link>
|
|
<AdditionalDependencies>
|
|
wxbase29u$(WxLibDbgSuffix).lib;
|
|
wxbase29u$(WxLibDbgSuffix)_net.lib;
|
|
wxbase29u$(WxLibDbgSuffix)_xml.lib;
|
|
wxmsw29u$(WxLibDbgSuffix)_core.lib;
|
|
wxmsw29u$(WxLibDbgSuffix)_adv.lib;
|
|
wxmsw29u$(WxLibDbgSuffix)_gl.lib;
|
|
wxmsw29u$(WxLibDbgSuffix)_stc.lib;
|
|
wxscintilla$(WxLibDbgSuffix).lib;
|
|
wxzlib$(WxLibDbgSuffix).lib;
|
|
wxexpat$(WxLibDbgSuffix).lib;
|
|
wxregexu$(WxLibDbgSuffix).lib;
|
|
wxpng$(WxLibDbgSuffix).lib;
|
|
%(AdditionalDependencies)
|
|
</AdditionalDependencies>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
</Project>
|