]> git.saurik.com Git - wxWidgets.git/blame - src/msw/wince/clean_vcp.py
Simplify the version information resource definition a little.
[wxWidgets.git] / src / msw / wince / clean_vcp.py
CommitLineData
83e96c90
JS
1'''
2This script will delete dependences from *.vcp files.
3After using this script, next time when you will try to save project,
070d6391 4you will have wait until 'Visual Tools' will rebuild all dependencies
83e96c90
JS
5and this process might take HUGE amount of time
6
7Author : Viktor Voroshylo
8$Id$
9'''
10__version__='$Revision$'[11:-2]
11
12import sys
13
14if len(sys.argv) != 2 :
15 print "Usage: %s project_file.vcp" % sys.argv[0]
16 sys.exit(0)
17
18vsp_filename = sys.argv[1]
19exclude_line = 0
20resultLines = []
21
22vsp_file = open(vsp_filename, "r")
23empty_if_start = -1
24
25line = vsp_file.readline()
26while line :
27 skip_line = 0
28 if exclude_line :
29 if not line.endswith("\\\n") : exclude_line = 0
30 skip_line = 1
31 elif line.startswith("DEP_CPP_") or line.startswith("NODEP_CPP_") :
32 exclude_line = 1
33 skip_line = 1
34 elif empty_if_start != -1 :
35 if line == "!ENDIF \n" :
36 resultLines = resultLines[:empty_if_start]
37 empty_if_start = -1
38 skip_line = 1
39 elif line != "\n" and not line.startswith("!ELSEIF ") :
40 empty_if_start = -1
41 elif line.startswith("!IF ") :
42 empty_if_start = len(resultLines)
43
44 if not skip_line :
45 resultLines.append(line)
46
47 line = vsp_file.readline()
48
49open(vsp_filename, "w").write("".join(resultLines))