summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2017-07-13 14:54:09 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2017-07-14 15:28:36 +0300
commit460643b21310d4ce40b355cc9e365da4e7cba8e3 (patch)
treea7f05d965a3406736d4c3663eb2fc02b822386fb /Makefile
parent48ddfef89ff4daa2e26d3338dbfc20c4f4cc7d21 (diff)
downloadqtlocation-mapboxgl-460643b21310d4ce40b355cc9e365da4e7cba8e3.tar.gz
[build] Publish node packages with RelWithDebInfo
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b6e4b608fa..dfa5c8b640 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,11 @@ export BUILDTYPE ?= Debug
export WITH_CXX11ABI ?= $(shell scripts/check-cxx11abi.sh)
ifeq ($(BUILDTYPE), Release)
+else ifeq ($(BUILDTYPE), RelWithDebInfo)
else ifeq ($(BUILDTYPE), Sanitize)
else ifeq ($(BUILDTYPE), Debug)
else
- $(error BUILDTYPE must be Debug, Sanitize or Release)
+ $(error BUILDTYPE must be Debug, Sanitize, Release or RelWithDebInfo)
endif
buildtype := $(shell echo "$(BUILDTYPE)" | tr "[A-Z]" "[a-z]")