From: <vac...@us...> - 2010-04-20 16:15:50
|
Revision: 183 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=183&view=rev Author: vaclavslavik Date: 2010-04-20 16:15:43 +0000 (Tue, 20 Apr 2010) Log Message: ----------- Generate project files in msbuild file. If the project files are missing (e.g. in SVN checkout), run bakefile_gen to create them first. Modified Paths: -------------- trunk/platform/Win32/master.proj Modified: trunk/platform/Win32/master.proj =================================================================== --- trunk/platform/Win32/master.proj 2010-04-19 12:42:00 UTC (rev 182) +++ trunk/platform/Win32/master.proj 2010-04-20 16:15:43 UTC (rev 183) @@ -25,7 +25,7 @@ <Import Project="$(MSBuildExtensionsPath)\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets"/> - <Target Name="Build" DependsOnTargets="Deps" > + <Target Name="Build" DependsOnTargets="Deps;BakefileGen" > <Message Text="Building C++ library with Visual C++ $(VCVersion)..."/> <ItemGroup> <VCProjFiles Include="xmlwrapp_vc$(VCVersion)_*.vcproj"/> @@ -36,6 +36,11 @@ /> </Target> + <Target Name="BakefileGen" Condition="!Exists('xmlwrapp_vc$(VCVersion)_xmlwrapp.vcproj')"> + <Message Text="Running Bakefile to generate project files..."/> + <Exec Command="bakefile_gen"/> + </Target> + <Target Name="Deps"> <MakeDir Directories="download"/> <WebDownload Condition="!Exists('download\$(ZipZlib)')" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |