From a212746a3d249929eff1c4ca2fee4a2186ccf794 Mon Sep 17 00:00:00 2001 From: karroffel Date: Fri, 2 Mar 2018 19:03:57 +0100 Subject: [PATCH] add clang option to makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 95989ff9..f8f4d1fa 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,9 @@ REGENERATE_BINDINGS = no HEADERS = ../godot_headers TARGET = debug NAME = godot-cpp +USE_CLANG = no -BASE = scons n=$(NAME) regenerate_bindings=$(REGENERATE_BINDINGS) target=$(TARGET) headers=$(HEADERS) godotbinpath=$(GODOT_BIN_PATH) -j4 +BASE = scons n=$(NAME) use_llvm=$(USE_CLANG) regenerate_bindings=$(REGENERATE_BINDINGS) target=$(TARGET) headers=$(HEADERS) godotbinpath=$(GODOT_BIN_PATH) -j4 LINUX = $(BASE) p=linux WINDOWS = $(BASE) p=windows OSX = $(BASE) p=osx