From 38fcc0f27e39d084431ac1998e6d51352a86ad25 Mon Sep 17 00:00:00 2001 From: Anders Bakken Date: Tue, 5 Mar 2019 22:25:03 -0800 Subject: [PATCH] Actually implement --build-tests --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 1503f8eb0..269716d4a 100755 --- a/configure +++ b/configure @@ -64,6 +64,9 @@ while [ -n "$1" ]; do --build-clang) BUILD=1 ;; + --build-tests) + CMAKE_ARGS="${CMAKE_ARGS} -DBUILD_TESTING=1" + ;; --without-tests) CMAKE_ARGS="${CMAKE_ARGS} -DBUILD_TESTING=0" ;;