File: Android.mk

package info (click to toggle)
belcard 5.3.105-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 792 kB
  • sloc: cpp: 3,465; makefile: 99; python: 53; sh: 25
file content (33 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
LOCAL_PATH:= $(call my-dir)/../../src

include $(CLEAR_VARS)

LOCAL_CPP_EXTENSION := .cpp

LOCAL_C_INCLUDES += \
	$(LOCAL_PATH)/../include \
	$(LOCAL_PATH)/../../belr/include \

LOCAL_SRC_FILES := \
	belcard_addressing.cpp \
	belcard_communication.cpp \
	belcard_explanatory.cpp \
	belcard_geographical.cpp \
	belcard_organizational.cpp \
	belcard_parser.cpp \
	belcard_rfc6474.cpp \
	belcard_utils.cpp \
	belcard_calendar.cpp \
	belcard.cpp \
	belcard_general.cpp \
	belcard_identification.cpp \
	belcard_params.cpp \
	belcard_property.cpp \
	belcard_security.cpp \
	vcard_grammar.cpp \
	
LOCAL_STATIC_LIBRARIES += libbelr

LOCAL_MODULE:= libbelcard

include $(BUILD_STATIC_LIBRARY)