hexchat/src/common/common.vcxproj

169 lines
7.6 KiB
XML
Raw Normal View History

2012-06-10 01:52:15 -04:00
<?xml version="1.0" encoding="utf-8"?>
2013-09-13 12:49:19 -04:00
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Configuration">
2013-09-13 12:49:19 -04:00
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
2012-06-10 01:52:15 -04:00
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
2012-06-15 16:36:29 -04:00
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
2012-06-10 01:52:15 -04:00
</ItemGroup>
<ItemGroup>
<ClInclude Include="cfgfiles.h" />
<ClInclude Include="chanopt.h" />
<ClInclude Include="ctcp.h" />
<ClInclude Include="dcc.h" />
<ClInclude Include="fe.h" />
<ClInclude Include="history.h" />
<ClInclude Include="identd.h" />
<ClInclude Include="ignore.h" />
<ClInclude Include="inbound.h" />
<ClInclude Include="inet.h" />
<ClInclude Include="marshal.h" />
2012-06-10 01:52:15 -04:00
<ClInclude Include="modes.h" />
<ClInclude Include="network.h" />
<ClInclude Include="notify.h" />
<ClInclude Include="outbound.h" />
<ClInclude Include="plugin-timer.h" />
<ClInclude Include="plugin.h" />
<ClInclude Include="proto-irc.h" />
<ClInclude Include="server.h" />
<ClInclude Include="servlist.h" />
<ClInclude Include="ssl.h" />
<ClInclude Include="text.h" />
<ClInclude Include="textenums.h" />
<ClInclude Include="textevents.h" />
<ClInclude Include="tree.h" />
2012-10-20 22:41:59 -04:00
<ClInclude Include="typedef.h" />
2012-06-10 01:52:15 -04:00
<ClInclude Include="url.h" />
<ClInclude Include="userlist.h" />
<ClInclude Include="util.h" />
2012-10-24 15:33:02 -04:00
<ClInclude Include="hexchat-plugin.h" />
<ClInclude Include="hexchat.h" />
<ClInclude Include="hexchatc.h" />
2012-06-10 01:52:15 -04:00
</ItemGroup>
<ItemGroup>
<ClCompile Include="cfgfiles.c" />
<ClCompile Include="chanopt.c" />
<ClCompile Include="ctcp.c" />
<ClCompile Include="dcc.c" />
<ClCompile Include="history.c" />
<ClCompile Include="identd.c" />
<ClCompile Include="ignore.c" />
<ClCompile Include="inbound.c" />
<ClCompile Include="marshal.c" />
2012-06-10 01:52:15 -04:00
<ClCompile Include="modes.c" />
<ClCompile Include="network.c" />
<ClCompile Include="notify.c" />
<ClCompile Include="outbound.c" />
<ClCompile Include="plugin-timer.c" />
<ClCompile Include="plugin.c" />
<ClCompile Include="proto-irc.c" />
<ClCompile Include="server.c" />
<ClCompile Include="servlist.c" />
<ClCompile Include="ssl.c" />
<ClCompile Include="text.c" />
<ClCompile Include="tree.c" />
<ClCompile Include="url.c" />
<ClCompile Include="userlist.c" />
<ClCompile Include="util.c" />
2012-10-24 15:33:02 -04:00
<ClCompile Include="hexchat.c" />
2012-06-10 01:52:15 -04:00
</ItemGroup>
<ItemGroup>
<None Include="..\..\win32\config.h.tt" />
<ClInclude Include="..\..\config.h" />
</ItemGroup>
2012-06-10 01:52:15 -04:00
<PropertyGroup Label="Globals">
<ProjectGuid>{87554B59-006C-4D94-9714-897B27067BA3}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>common</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
2012-06-15 16:36:29 -04:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
2012-06-10 01:52:15 -04:00
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2012-07-11 15:33:10 -04:00
<Import Project="..\..\win32\hexchat.props" />
2012-06-10 01:52:15 -04:00
</ImportGroup>
2012-06-15 16:36:29 -04:00
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2012-07-11 15:33:10 -04:00
<Import Project="..\..\win32\hexchat.props" />
2012-06-15 16:36:29 -04:00
</ImportGroup>
2012-06-10 01:52:15 -04:00
<PropertyGroup Label="UserMacros" />
2012-06-15 15:37:48 -04:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2012-10-02 12:15:49 -04:00
<OutDir>$(HexChatBin)</OutDir>
2012-10-02 12:21:16 -04:00
<IntDir>$(HexChatObj)$(ProjectName)\</IntDir>
2012-06-15 15:37:48 -04:00
</PropertyGroup>
2012-06-15 16:36:29 -04:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2012-10-02 12:15:49 -04:00
<OutDir>$(HexChatBin)</OutDir>
2012-10-02 12:21:16 -04:00
<IntDir>$(HexChatObj)$(ProjectName)\</IntDir>
2012-06-15 16:36:29 -04:00
</PropertyGroup>
2012-06-10 01:52:15 -04:00
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;$(OwnFlags);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>$(SolutionDir)..;$(DepsRoot)\include;$(Glib);$(Gtk);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2012-06-10 01:52:15 -04:00
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
2012-06-15 16:36:29 -04:00
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;_WIN64;_AMD64_;NDEBUG;_LIB;$(OwnFlags);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>$(SolutionDir)..;$(DepsRoot)\include;$(Glib);$(Gtk);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2012-06-15 16:36:29 -04:00
<MultiProcessorCompilation>true</MultiProcessorCompilation>
2013-04-14 07:19:49 -04:00
<DisableSpecificWarnings>4267;%(DisableSpecificWarnings)</DisableSpecificWarnings>
2012-06-15 16:36:29 -04:00
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
2012-06-10 01:52:15 -04:00
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ItemDefinitionGroup>
<PreBuildEvent>
<Command><![CDATA[
SET SOLUTIONDIR=$(SolutionDir)..\
powershell -File "$(SolutionDir)..\win32\version-template.ps1" "$(SolutionDir)..\win32\config.h.tt" "$(SolutionDir)..\config.h"
"$(DepsRoot)\bin\glib-genmarshal.exe" --prefix=_hexchat_marshal --header "$(ProjectDir)marshalers.list" > "$(ProjectDir)marshal.h"
"$(DepsRoot)\bin\glib-genmarshal.exe" --prefix=_hexchat_marshal --body "$(ProjectDir)marshalers.list" > "$(ProjectDir)marshal.c"
]]></Command>
</PreBuildEvent>
</ItemDefinitionGroup>
</Project>