This repository has been archived on 2024-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
FreeGLUT-Vita/progs/test-shapes-gles1/ndk/jni/Android.mk
2020-10-29 22:28:16 +03:00

15 lines
320 B
Makefile

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := native-activity
LOCAL_SRC_FILES :=
LOCAL_CPPFLAGS := -I/usr/src/glm
LOCAL_CXXFLAGS := -gstabs+
LOCAL_LDLIBS := -llog -landroid -lGLESv2 -lEGL
LOCAL_STATIC_LIBRARIES := freeglut
include $(BUILD_SHARED_LIBRARY)
$(call import-module,freeglut)