diff options
author | Arnavion <arnavion@gmail.com> | 2013-04-25 21:03:03 -0700 |
---|---|---|
committer | Arnavion <arnavion@gmail.com> | 2013-04-25 21:03:03 -0700 |
commit | 07bc467d031cbaa47331a7fec52b6bc02ab38f95 (patch) | |
tree | a17087c925fb7f0422b2df5b537c8e42ade24a93 | |
parent | a39f8ea71f3c34b60949421e3385e7ed980411b8 (diff) |
win32: Moved PlatformToolset configuration to individual project files. It should be set before setting other properties or importing other props.
This fixes the broken GUI Platform Toolset indicator, as well as VS compilation itself if another version such as 2010 was also installed.
-rw-r--r-- | plugins/checksum/checksum.vcxproj | 3 | ||||
-rw-r--r-- | plugins/dns/dns.vcxproj | 3 | ||||
-rw-r--r-- | plugins/doat/doat.vcxproj | 3 | ||||
-rw-r--r-- | plugins/exec/exec.vcxproj | 3 | ||||
-rw-r--r-- | plugins/fishlim/fishlim.vcxproj | 3 | ||||
-rw-r--r-- | plugins/hextray/hextray.vcxproj | 3 | ||||
-rw-r--r-- | plugins/mpcinfo/mpcinfo.vcxproj | 3 | ||||
-rw-r--r-- | plugins/perl/perl.vcxproj | 3 | ||||
-rw-r--r-- | plugins/python/python.vcxproj | 3 | ||||
-rw-r--r-- | plugins/sysinfo/sysinfo.vcxproj | 3 | ||||
-rw-r--r-- | plugins/upd/upd.vcxproj | 3 | ||||
-rw-r--r-- | plugins/winamp/winamp.vcxproj | 3 | ||||
-rw-r--r-- | src/common/common.vcxproj | 3 | ||||
-rw-r--r-- | src/common/make-te.vcxproj | 3 | ||||
-rw-r--r-- | src/fe-gtk/fe-gtk.vcxproj | 3 | ||||
-rw-r--r-- | src/fe-text/fe-text.vcxproj | 3 | ||||
-rw-r--r-- | src/pixmaps/pixmaps.vcxproj | 3 | ||||
-rw-r--r-- | src/version/version.vcxproj | 3 | ||||
-rw-r--r-- | win32/copy/copy.vcxproj | 3 | ||||
-rw-r--r-- | win32/hexchat.props | 4 | ||||
-rw-r--r-- | win32/installer/installer.vcxproj | 3 | ||||
-rw-r--r-- | win32/nls/nls.vcxproj | 3 |
22 files changed, 63 insertions, 4 deletions
diff --git a/plugins/checksum/checksum.vcxproj b/plugins/checksum/checksum.vcxproj index 43f8f511..4090675c 100644 --- a/plugins/checksum/checksum.vcxproj +++ b/plugins/checksum/checksum.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/dns/dns.vcxproj b/plugins/dns/dns.vcxproj index 5efbebfe..39e47f67 100644 --- a/plugins/dns/dns.vcxproj +++ b/plugins/dns/dns.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/doat/doat.vcxproj b/plugins/doat/doat.vcxproj index 93bcdf7d..bb44030d 100644 --- a/plugins/doat/doat.vcxproj +++ b/plugins/doat/doat.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/exec/exec.vcxproj b/plugins/exec/exec.vcxproj index 048a33b5..f1710119 100644 --- a/plugins/exec/exec.vcxproj +++ b/plugins/exec/exec.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/fishlim/fishlim.vcxproj b/plugins/fishlim/fishlim.vcxproj index 82c9abf2..3743057c 100644 --- a/plugins/fishlim/fishlim.vcxproj +++ b/plugins/fishlim/fishlim.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/hextray/hextray.vcxproj b/plugins/hextray/hextray.vcxproj index 77cc6ad9..9cac1368 100644 --- a/plugins/hextray/hextray.vcxproj +++ b/plugins/hextray/hextray.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/mpcinfo/mpcinfo.vcxproj b/plugins/mpcinfo/mpcinfo.vcxproj index 7d9a8c57..a63962a9 100644 --- a/plugins/mpcinfo/mpcinfo.vcxproj +++ b/plugins/mpcinfo/mpcinfo.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/perl/perl.vcxproj b/plugins/perl/perl.vcxproj index 220aa0eb..af173966 100644 --- a/plugins/perl/perl.vcxproj +++ b/plugins/perl/perl.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/python/python.vcxproj b/plugins/python/python.vcxproj index 308c22db..6d95d056 100644 --- a/plugins/python/python.vcxproj +++ b/plugins/python/python.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/sysinfo/sysinfo.vcxproj b/plugins/sysinfo/sysinfo.vcxproj index 515515ff..0446e723 100644 --- a/plugins/sysinfo/sysinfo.vcxproj +++ b/plugins/sysinfo/sysinfo.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/upd/upd.vcxproj b/plugins/upd/upd.vcxproj index 355f95c0..1b3009dc 100644 --- a/plugins/upd/upd.vcxproj +++ b/plugins/upd/upd.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/plugins/winamp/winamp.vcxproj b/plugins/winamp/winamp.vcxproj index e13f8056..667ec598 100644 --- a/plugins/winamp/winamp.vcxproj +++ b/plugins/winamp/winamp.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/src/common/common.vcxproj b/src/common/common.vcxproj index 615f430d..c71d6ced 100644 --- a/src/common/common.vcxproj +++ b/src/common/common.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/src/common/make-te.vcxproj b/src/common/make-te.vcxproj index 431916f3..07bb5ca4 100644 --- a/src/common/make-te.vcxproj +++ b/src/common/make-te.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/src/fe-gtk/fe-gtk.vcxproj b/src/fe-gtk/fe-gtk.vcxproj index ea78b3d6..0c149928 100644 --- a/src/fe-gtk/fe-gtk.vcxproj +++ b/src/fe-gtk/fe-gtk.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/src/fe-text/fe-text.vcxproj b/src/fe-text/fe-text.vcxproj index 085ceefe..1c42c967 100644 --- a/src/fe-text/fe-text.vcxproj +++ b/src/fe-text/fe-text.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/src/pixmaps/pixmaps.vcxproj b/src/pixmaps/pixmaps.vcxproj index a7df8989..dbb18520 100644 --- a/src/pixmaps/pixmaps.vcxproj +++ b/src/pixmaps/pixmaps.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/src/version/version.vcxproj b/src/version/version.vcxproj index 505bae55..ca429b08 100644 --- a/src/version/version.vcxproj +++ b/src/version/version.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/win32/copy/copy.vcxproj b/win32/copy/copy.vcxproj index bf9d088f..3146e6be 100644 --- a/win32/copy/copy.vcxproj +++ b/win32/copy/copy.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/win32/hexchat.props b/win32/hexchat.props index eb121ed5..ad59ec1c 100644 --- a/win32/hexchat.props +++ b/win32/hexchat.props @@ -2,10 +2,6 @@ <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ImportGroup Label="PropertySheets" /> - <PropertyGroup Label="Configuration"> - <PlatformToolset>v110</PlatformToolset> - </PropertyGroup> - <PropertyGroup Label="UserMacros"> <!-- SPECIFY YOUR DEPENDENCY DIRECTORIES HERE --> diff --git a/win32/installer/installer.vcxproj b/win32/installer/installer.vcxproj index 3b9a1e25..faa13c06 100644 --- a/win32/installer/installer.vcxproj +++ b/win32/installer/installer.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> diff --git a/win32/nls/nls.vcxproj b/win32/nls/nls.vcxproj index c1472cd7..c1da078a 100644 --- a/win32/nls/nls.vcxproj +++ b/win32/nls/nls.vcxproj @@ -1,5 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> |