summaryrefslogtreecommitdiff
path: root/Android.mk
blob: ac4e9f52551cde856391bf39603a4b57e863be39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

# embUnit test framework source files
LOCAL_SRC_FILES :=      \
    src/AssertImpl.c    \
    src/RepeatedTest.c  \
    src/stdImpl.c       \
    src/TestCaller.c    \
    src/TestCase.c      \
    src/TestResult.c    \
    src/TestRunner.c    \
    src/TestSuite.c

# Header files path
LOCAL_C_INCLUDES := \
    $(LOCAL_PATH)/inc

LOCAL_MODULE_TAGS := tests

LOCAL_MODULE := libembunit

include $(BUILD_SHARED_LIBRARY)