1
0
Fork 0
arangodb/3rdParty/V8/build/gyp/tools
Jan Steemann 0585fa2e1d updated v8 version from 3.9.4 to 3.16.14.1 2013-02-18 15:03:02 +01:00
..
Xcode removed .svn 2012-02-09 11:15:06 +01:00
README removed .svn 2012-02-09 11:15:06 +01:00
graphviz.py removed .svn 2012-02-09 11:15:06 +01:00
pretty_gyp.py updated v8 version from 3.9.4 to 3.16.14.1 2013-02-18 15:03:02 +01:00
pretty_sln.py updated v8 version from 3.9.4 to 3.16.14.1 2013-02-18 15:03:02 +01:00
pretty_vcproj.py updated v8 version from 3.9.4 to 3.16.14.1 2013-02-18 15:03:02 +01:00

README

pretty_vcproj:
  Usage: pretty_vcproj.py "c:\path\to\vcproj.vcproj" [key1=value1] [key2=value2]

  They key/value pair are used to resolve vsprops name.

  For example, if I want to diff the base.vcproj project:

  pretty_vcproj.py z:\dev\src-chrome\src\base\build\base.vcproj "$(SolutionDir)=z:\dev\src-chrome\src\chrome\\" "$(CHROMIUM_BUILD)=" "$(CHROME_BUILD_TYPE)=" > orignal.txt
  pretty_vcproj.py z:\dev\src-chrome\src\base\base_gyp.vcproj "$(SolutionDir)=z:\dev\src-chrome\src\chrome\\" "$(CHROMIUM_BUILD)=" "$(CHROME_BUILD_TYPE)=" > gyp.txt

  And you can use your favorite diff tool to see the changes.

  Note: In the case of base.vcproj, the original vcproj is one level up the generated one.
        I suggest you do a search and replace for '"..\' and replace it with '"' in original.txt
        before you perform the diff.