b52397d374
Like the Visual Studio 2008 projects, give the Visual Studio 2010 projects an overhaul, where: -The property sheets are split up, so that they are easier to maintain and each project only needs to include the necessary parts. The various projects are updated accordingly, too. The copying of config.h.win32 and clutter-config.h.win32(_GDK) are now done with custom build rules, so that these files can be cleaned and/or recopied during a clean, rebuild or update. -Clean up the property sheets, to get rid of parts that are actually repeated. Also update the build macros, so that we won't get warnings for repeated #defines of macros and fix the build of the various tests/ demo programs. -Make all projects use Unix line endings, except for the .sln and README.txt files, which need to have Windows line endings. This makes it easier to apply patches to these project files. -Update the installation of headers, as headers are introduced/deprecated. -Cosmetics: get rid of "\ No newline at end of file".
58 lines
2.4 KiB
XML
58 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Label="UserMacros">
|
|
<VSVer>10</VSVer>
|
|
<GlibEtcInstallRoot>$(SolutionDir)\..\..\..\..\vs$(VSVer)\$(Platform)</GlibEtcInstallRoot>
|
|
<ApiVersion>1.0</ApiVersion>
|
|
<CopyDir>$(GlibEtcInstallRoot)</CopyDir>
|
|
<DefDir>$(SolutionDir)$(Configuration)\$(PlatformName)\obj\$(ProjectName)\</DefDir>
|
|
<ClutterLibtoolCompatibleDllPrefix>lib</ClutterLibtoolCompatibleDllPrefix>
|
|
<ClutterLibtoolCompatibleDllSuffix>-$(ApiVersion)-0</ClutterLibtoolCompatibleDllSuffix>
|
|
<ClutterSeparateVSDllPrefix />
|
|
<ClutterSeparateVSDllSuffix>-1-vs$(VSVer)</ClutterSeparateVSDllSuffix>
|
|
<!-- Change the following 2 entries to ClutterLibtoolCompatibleDllPrefix
|
|
and ClutterLibtoolCompatibleDllSuffix if the use of LibTool-style
|
|
DLL names is desired -->
|
|
<ClutterDllPrefix>$(ClutterSeparateVSDllPrefix)</ClutterDllPrefix>
|
|
<ClutterDllSuffix>$(ClutterSeparateVSDllSuffix)</ClutterDllSuffix>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<_PropertySheetDisplayName>clutterversionpathsprops</_PropertySheetDisplayName>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<BuildMacro Include="VSVer">
|
|
<Value>$(VSVer)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="GlibEtcInstallRoot">
|
|
<Value>$(GlibEtcInstallRoot)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="CopyDir">
|
|
<Value>$(CopyDir)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="DefDir">
|
|
<Value>$(DefDir)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="ApiVersion">
|
|
<Value>$(ApiVersion)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="ClutterLibtoolCompatibleDllPrefix">
|
|
<Value>$(ClutterLibtoolCompatibleDllPrefix)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="ClutterLibtoolCompatibleDllSuffix">
|
|
<Value>$(ClutterLibtoolCompatibleDllSuffix)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="ClutterSeparateVSDllPrefix">
|
|
<Value>$(ClutterSeparateVSDllPrefix)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="ClutterSeparateVSDllSuffix">
|
|
<Value>$(ClutterSeparateVSDllSuffix)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="ClutterDllPrefix">
|
|
<Value>$(ClutterDllPrefix)</Value>
|
|
</BuildMacro>
|
|
<BuildMacro Include="ClutterDllSuffix">
|
|
<Value>$(ClutterDllSuffix)</Value>
|
|
</BuildMacro>
|
|
</ItemGroup>
|
|
</Project>
|