2012-08-30 18:32:31 +02:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE := glew
|
|
|
|
|
|
|
|
#http://glew.sourceforge.net/index.html
|
|
|
|
|
2012-11-09 01:40:45 +01:00
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/glew/include/
|
|
|
|
LOCAL_EXPORT_LDLIBS := $(LOCAL_PATH)/glew/lib/glew32s.lib -lopengl32 -lgdi32
|
2012-08-30 18:32:31 +02:00
|
|
|
|
|
|
|
include $(BUILD_PREBUILT)
|
|
|
|
|