[llvm-commits] CVS: llvm/win32/TableGen/TableGen.vcproj
Jeff Cohen
jeffc at jolt-lang.org
Sat Jan 1 10:17:51 PST 2005
Changes in directory llvm/win32/TableGen:
TableGen.vcproj updated: 1.6 -> 1.7
---
Log message:
Improve TableGen dependencies
Move TableGen generated files out of the src tree
Add descriptions to the custom build steps
---
Diffs of the changes: (+8 -6)
Index: llvm/win32/TableGen/TableGen.vcproj
diff -u llvm/win32/TableGen/TableGen.vcproj:1.6 llvm/win32/TableGen/TableGen.vcproj:1.7
--- llvm/win32/TableGen/TableGen.vcproj:1.6 Sat Dec 18 20:29:00 2004
+++ llvm/win32/TableGen/TableGen.vcproj Sat Jan 1 12:17:40 2005
@@ -46,8 +46,7 @@
<Tool
Name="VCMIDLTool"/>
<Tool
- Name="VCPostBuildEventTool"
- CommandLine="copy $(OutDir)\TableGen.exe ..\tools"/>
+ Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
@@ -98,8 +97,7 @@
<Tool
Name="VCMIDLTool"/>
<Tool
- Name="VCPostBuildEventTool"
- CommandLine="copy $(OutDir)\TableGen.exe ..\tools"/>
+ Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
@@ -140,6 +138,7 @@
Name="Debug|Win32">
<Tool
Name="VCCustomBuildTool"
+ Description="Performing flex"
CommandLine="..\tools\flex -t >$(InputDir)$(InputName).cpp $(InputPath)
"
Outputs="$(InputDir)$(InputName).cpp"/>
@@ -148,6 +147,7 @@
Name="Release|Win32">
<Tool
Name="VCCustomBuildTool"
+ Description="Performing flex"
CommandLine="..\tools\flex -t >$(InputDir)$(InputName).cpp $(InputPath)
"
Outputs="$(InputDir)$(InputName).cpp"/>
@@ -159,8 +159,9 @@
Name="Debug|Win32">
<Tool
Name="VCCustomBuildTool"
+ Description="Performing bison"
CommandLine="..\tools\bison -pFile -tdo$(InputDir)$(InputName).cpp $(InputPath)
-copy $(InputDir)$(InputName).hpp $(InputDir)$(InputName).h
+move $(InputDir)$(InputName).hpp $(InputDir)$(InputName).h
"
Outputs="$(InputDir)$(InputName).cpp;$(InputDir)$(InputName).h"/>
</FileConfiguration>
@@ -168,8 +169,9 @@
Name="Release|Win32">
<Tool
Name="VCCustomBuildTool"
+ Description="Performing bison"
CommandLine="..\tools\bison -pFile -tdo$(InputDir)$(InputName).cpp $(InputPath)
-copy $(InputDir)$(InputName).hpp $(InputDir)$(InputName).h
+move $(InputDir)$(InputName).hpp $(InputDir)$(InputName).h
"
Outputs="$(InputDir)$(InputName).cpp;$(InputDir)$(InputName).h"/>
</FileConfiguration>
More information about the llvm-commits
mailing list