Mercurial > hg > orthanc-databases
view Resources/PostgreSQL/PrepareCMakeConfigurationFile.py @ 485:9722e408d817 OrthancPostgreSQL-6.0
closing OrthancPostgreSQL-6.0
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 22 Mar 2024 13:34:19 +0100 |
parents | 8c7bb94adff7 |
children |
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-zA-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)