From fa7aef0c37ba3cbaafe30f8b749fac47ffc20e22 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Tue, 25 Mar 2025 19:31:25 -0400 Subject: [PATCH] build: Fix make warnings on macos. --- GNUmakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index 0d5532ca..af9b6e16 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -45,6 +45,10 @@ export TZ=UTC ifeq ($(UNAME_S),Darwin) BUILD_TYPES := debug release iosdebug iosrelease iossimdebug iossimrelease +HAVE_ANDROID = 0 +HAVE_LINUX_IOS = 0 +HAVE_LINUX_MACOS = 0 +HAVE_WIN = 0 else ifeq ($(UNAME_S),Linux) BUILD_TYPES := debug release HAVE_ANDROID = $(if $(shell which $(ANDROID_SDK)/platform-tools/adb),1)