File: Android.mk

package info (click to toggle)
vte2.91 0.82.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,944 kB
  • sloc: cpp: 96,516; ansic: 8,991; python: 3,082; sh: 996; perl: 100; makefile: 86; xml: 27; javascript: 4
file content (15 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (26)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE := fmt_static
LOCAL_MODULE_FILENAME := libfmt

LOCAL_SRC_FILES := ../src/format.cc

LOCAL_C_INCLUDES := $(LOCAL_PATH)
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)

LOCAL_CFLAGS += -std=c++11 -fexceptions

include $(BUILD_STATIC_LIBRARY)