Skip to content

Commit 230e9bf

Browse files
committed
Updated makefile targets for Godot plugin.
1 parent dfb8143 commit 230e9bf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

GodotPlugin/Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
help:
22
@fgrep -h "##" $(MAKEFILE_LIST) | sed -e 's/##//' | tail -n +2
33

4-
build-debug: ## Build debug Godot plugin
4+
submodules: ## Setup Submodules
5+
git submodule init
6+
git submodule update
7+
8+
build-debug: submodules ## Build debug Godot plugin
59
scons platform=macos arch=universal target=template_debug
610
scons platform=windows arch=x86_32 target=template_debug
711
scons platform=windows arch=x86_64 target=template_debug
812

9-
build-release: ## Build release Godot plugin
13+
build-release: submodules ## Build release Godot plugin
1014
scons platform=macos arch=universal target=template_release
1115
scons platform=windows arch=x86_32 target=template_release
1216
scons platform=windows arch=x86_64 target=template_release

0 commit comments

Comments
 (0)