summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/qmakeish.py')
-rwxr-xr-xSwift/QtUI/qmakeish.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Swift/QtUI/qmakeish.py b/Swift/QtUI/qmakeish.py
index c5b302d..ebbb0cd 100755
--- a/Swift/QtUI/qmakeish.py
+++ b/Swift/QtUI/qmakeish.py
@@ -90,6 +90,10 @@ for line in makefile :
if match :
processFlags(match.group(1), match.group(2))
+ match = re.match("SQLITE_CPPFLAGS \+= (.*)", line)
+ if match :
+ processFlags("CPPFLAGS", match.group(1))
+
if line.startswith("## ") :
print line