Android build different based on OS

This commit is contained in:
hedgecrw85 2020-04-02 00:00:11 -05:00
parent 1d297ca610
commit 05ecc50de8
1 changed files with 6 additions and 0 deletions

View File

@ -10,5 +10,11 @@ LOCAL_CFLAGS := -fsigned-char
include $(BUILD_SHARED_LIBRARY)
HOST_OS := $(strip $(HOST_OS))
ifeq ($(OS),Windows_NT)
all:
rmdir /Q /S libs obj
else
all:
rm -rf libs obj
endif