From 3caa8ddb2ff6435b119b1ef25bcad41658cf9799 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Tue, 16 Jun 2020 18:28:20 -0400 Subject: Fix debug widget build CMAKE_BUILD_TYPE was being set in config.cmake instead of BUILD_TYPE, so passing in a value via autobuild was being ignored. Change it to BUILD_TYPE as it is in the cmake template to get the expected behavior. Bug-AGL: SPEC-2049, SPEC-3300 Signed-off-by: Scott Murray Change-Id: I48cd5ee144a4b768b5ce4bebd9c63a71808d9924 --- conf.d/cmake/config.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake index a1d7957..1fde1b3 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -42,7 +42,7 @@ set(PROJECT_CMAKE_CONF_DIR "conf.d") # Compilation Mode (DEBUG, RELEASE) # ---------------------------------- -set(CMAKE_BUILD_TYPE "RELEASE") +set(BUILD_TYPE "RELEASE") #set(USE_EFENCE 1) # Helpers Submodule parameters -- cgit 1.2.3-korg