xhook-sys 0.2.0

A Rust binding for xHook
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE     := xhook
LOCAL_SRC_FILES  := xhook.c \
                    xh_core.c \
                    xh_elf.c \
                    xh_jni.c \
                    xh_log.c \
                    xh_util.c \
                    xh_version.c
LOCAL_C_INCLUDES := $(LOCAL_PATH)
LOCAL_CFLAGS     := -Wall -Wextra -Werror -fvisibility=hidden
LOCAL_CONLYFLAGS := -std=c11
LOCAL_LDLIBS     := -llog
#include $(BUILD_SHARED_LIBRARY)
include $(BUILD_STATIC_LIBRARY)