Skip to content

Commit

Permalink
Allow building the legacy renderer for Android (#2841)
Browse files Browse the repository at this point in the history
  • Loading branch information
alasram authored Sep 16, 2024
1 parent 246f67d commit 4f0d5bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion platform/android/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ else
endif

ifeq ($(RENDERER), drawable)
else ifeq ($(RENDERER), legacy)
else ifeq ($(RENDERER), vulkan)
else
$(error RENDERER must be 'drawable' (OpenGL) or 'vulkan')
$(error RENDERER must be 'legacy' (OpenGL), 'drawable' (OpenGL) or 'vulkan')
endif

buildtype := $(shell echo "$(BUILDTYPE)" | tr "[A-Z]" "[a-z]")
Expand Down

0 comments on commit 4f0d5bc

Please sign in to comment.