mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
30 lines
683 B
Makefile
30 lines
683 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
|
# Setup some paths and libraries based on the type of build we're targeting.
|
|
ifdef DEBUG
|
|
RBX_LIB_DIR := debug
|
|
FMOD_SUFFIX := L
|
|
endif
|
|
ifdef NOOPT
|
|
RBX_LIB_DIR := noopt
|
|
FMOD_SUFFIX := L
|
|
endif
|
|
ifdef RELEASE
|
|
RBX_LIB_DIR := release
|
|
endif
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := roblox
|
|
LOCAL_SRC_FILES := ../../../../build/$(RBX_LIB_DIR)/libs/armeabi-v7a/libroblox.so
|
|
include $(PREBUILT_SHARED_LIBRARY)
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := fmod
|
|
LOCAL_SRC_FILES := ../../../fmod/Android/armeabi-v7a/libfmod${FMOD_SUFFIX}.so
|
|
include $(PREBUILT_SHARED_LIBRARY)
|
|
|
|
|
|
|
|
# PATH_PREFIX is used when building with Android Studio, and comes from NativeShell/build.gradle
|