add clang option to makefile

pull/109/head
karroffel 2018-03-02 19:03:57 +01:00
parent 0d8a605596
commit a212746a3d
1 changed files with 2 additions and 1 deletions

View File

@ -4,8 +4,9 @@ REGENERATE_BINDINGS = no
HEADERS = ../godot_headers HEADERS = ../godot_headers
TARGET = debug TARGET = debug
NAME = godot-cpp 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 LINUX = $(BASE) p=linux
WINDOWS = $(BASE) p=windows WINDOWS = $(BASE) p=windows
OSX = $(BASE) p=osx OSX = $(BASE) p=osx