Mercurial > hg > orthanc-databases
view Resources/PostgreSQL/PrepareCMakeConfigurationFile.py @ 111:1525539ce5d9
fix clang warnings
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 23 Jan 2019 17:27:13 +0100 |
parents | 7cea966b6829 |
children | 8c7bb94adff7 |
line wrap: on
line source
#!/usr/bin/python import re import sys if len(sys.argv) != 3: raise Exception('Bad number of arguments') r = re.compile(r'^#undef ([A-Z0-9_]+)$') with open(sys.argv[1], 'r') as f: with open(sys.argv[2], 'w') as g: for l in f.readlines(): m = r.match(l) if m != None: s = m.group(1) g.write('#cmakedefine %s @%s@\n' % (s, s)) else: g.write(l)