summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorQuentinCaffeino <sergey95zu@gmail.com>2018-02-25 16:25:42 +0100
committerQuentinCaffeino <sergey95zu@gmail.com>2018-02-25 16:25:42 +0100
commit43f57c7f80a3014fa8d9491420ca33ff93968625 (patch)
tree334231203f09d75cf7c582bc9969ebca37c4b335 /Makefile
parent38cfd627f394862bf09ce9c44bc270f3b230ad98 (diff)
downloadredot-cpp-43f57c7f80a3014fa8d9491420ca33ff93968625.tar.gz
Bindings are generated by default; Replaced generate with regenerate flag; Updated readme
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 976f002..95989ff 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,11 @@
GODOT_BIN_PATH = ../godot_fork/bin/godot.x11.tools.64.llvm
+REGENERATE_BINDINGS = no
HEADERS = ../godot_headers
TARGET = debug
NAME = godot-cpp
-BASE = scons n=$(NAME) generate_bindings=yes target=$(TARGET) headers=$(HEADERS) godotbinpath=$(GODOT_BIN_PATH) -j4
+BASE = scons n=$(NAME) 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