mirror of https://github.com/odrling/Aegisub
Add wx paths to the config properties
This commit is contained in:
parent
83597e1a68
commit
735d687ec5
|
@ -53,6 +53,10 @@
|
|||
<AegisubUseUpdateChecker>true</AegisubUseUpdateChecker>
|
||||
<UpdateCheckerServer>updates.aegisub.org</UpdateCheckerServer>
|
||||
<UpdateCheckerURL>/trunk</UpdateCheckerURL>
|
||||
<WxBasePath>$(AegisubSourceBase)wxlib</WxBasePath>
|
||||
<WxLibraryPath Condition="'$(Platform)'=='Win32'">$(WxBasePath)\lib32</WxLibraryPath>
|
||||
<WxLibraryPath Condition="'$(Platform)'=='x64'">$(WxBasePath)\lib64</WxLibraryPath>
|
||||
<WxIncludePath>$(WxBasePath)\include</WxIncludePath>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -45,6 +45,28 @@
|
|||
<Category Name="Paths" DisplayName="Library paths" Description="Configure third-party library paths" />
|
||||
</Rule.Categories>
|
||||
|
||||
<StringProperty
|
||||
Subtype="folder"
|
||||
Name="WxBasePath"
|
||||
Category="Paths"
|
||||
DisplayName="wxWidgets root"
|
||||
Description="Root directory of the wxWidgets installation to use"
|
||||
/>
|
||||
<StringProperty
|
||||
Subtype="folder"
|
||||
Name="WxLibraryPath"
|
||||
Category="Paths"
|
||||
DisplayName="wxWidgets library path"
|
||||
Description="Location of compiled wxWidgets library files"
|
||||
/>
|
||||
<StringProperty
|
||||
Subtype="folder"
|
||||
Name="WxIncludePath"
|
||||
Category="Paths"
|
||||
DisplayName="wxWidgets include path"
|
||||
Description="Location of wxWidgets header files"
|
||||
/>
|
||||
|
||||
<BoolProperty
|
||||
Name="AegisubUseDSound"
|
||||
Category="Features"
|
||||
|
|
|
@ -1,39 +1,49 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?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>
|
||||
<PropertyGroup>
|
||||
<_PropertySheetDisplayName>wxWidgets support</_PropertySheetDisplayName>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- Some helper affixes -->
|
||||
<PropertyGroup>
|
||||
<WxLibDbgSuffix Condition="'$(Configuration)'=='Debug'">d</WxLibDbgSuffix>
|
||||
<WxLibDbgSuffix Condition="'$(Configuration)'=='Release'"></WxLibDbgSuffix>
|
||||
</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>
|
||||
<ItemDefinitionGroup>
|
||||
<!-- Tell the compiler where to search for wx headers and libraries -->
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>
|
||||
$(WxLibraryPath)\mswu$(WxLibDbgSuffix);
|
||||
$(WxIncludePath);
|
||||
%(AdditionalIncludeDirectories)
|
||||
</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>$(WxIncludePath);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalLibraryDirectories>
|
||||
$(WxLibraryPath);
|
||||
%(AdditionalLibraryDirectories)
|
||||
</AdditionalLibraryDirectories>
|
||||
|
||||
<!-- 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>
|
||||
<!-- Tell the linker to use the appropriate wx libraries -->
|
||||
<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>
|
||||
|
|
Loading…
Reference in New Issue