glib/build/win32/vs10/glibprepbuild.props
Chun-wei Fan 113793a442 MSVC 2010 Project Files: Split up the Property Sheets
Like the Visual Studio 2008 project files, split up the property sheets
so to ease maintenace, and to prepare to use autotools to fill in the
header entries to "install".

Put some of the items that are frequently repeated in the projects as well,
also to simplify maintenance.

Also, update the autotools files to automate the upgrade of Visual Studio
2010 project as we now have multiple property sheets to copy and process.
2013-08-21 16:57:11 +08:00

39 lines
1002 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_PropertySheetDisplayName>glibprepbuildprops</_PropertySheetDisplayName>
</PropertyGroup>
<ItemDefinitionGroup>
<PreBuildEvent>
<Command>
if exist ..\..\..\config.h goto DONE_CONFIG_H
copy ..\..\..\config.h.win32 ..\..\..\config.h
:DONE_CONFIG_H
if exist ..\..\..\glib\glibconfig.h goto DONE_GLIBCONFIG_H
copy ..\..\..\glib\glibconfig.h.win32 ..\..\..\glib\glibconfig.h
:DONE_GLIBCONFIG_H
if exist ..\..\..\gmodule\gmoduleconf.h goto DONE_GMODULECONF_H
copy ..\..\..\gmodule\gmoduleconf.h.win32 ..\..\..\gmodule\gmoduleconf.h
:DONE_GMODULECONF_H
if exist ..\..\..\gio\gnetworking.h goto DONE_GNETWORKING_H
copy ..\..\..\gio\gnetworking.h.win32 ..\..\..\gio\gnetworking.h
:DONE_GNETWORKING_H
</Command>
</PreBuildEvent>
</ItemDefinitionGroup>
</Project>