summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure b/configure
index 34312cbcf8..d0aa090d93 100755
--- a/configure
+++ b/configure
@@ -161,6 +161,15 @@ $i"
CMAKE_CMDLINE="$CMAKE_CMDLINE
-DFEATURE_${VAR}=OFF"
;;
+ --sanitize=*)
+ VAR=`echo $i | sed 's,^--sanitize=\(.*\),\1,'`
+ CMAKE_CMDLINE="$CMAKE_CMDLINE
+-DECM_ENABLE_SANITIZERS=${VAR}"
+ ;;
+ --ccache)
+ CMAKE_CMDLINE="$CMAKE_CMDLINE
+-DQT_USE_CCACHE=ON"
+ ;;
--)
PASSTHRU=yes
;;