05cf62d1c8
png.h now includes pnglibconf.h update the include path so it can find it Change-Id: I594f1613e42405072029ae4cd7f9f8d0e03b2434
13 lines
272 B
Makefile
13 lines
272 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := screenshot.c
|
|
|
|
LOCAL_MODULE := screenshot
|
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils libz liblog
|
|
LOCAL_STATIC_LIBRARIES := libpng
|
|
LOCAL_C_INCLUDES += external/zlib external/libpng
|
|
|
|
include $(BUILD_EXECUTABLE)
|