File: Android.mk

package info (click to toggle)
vte2.91 0.83.90-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,864 kB
  • sloc: cpp: 97,071; ansic: 9,083; python: 3,224; sh: 996; perl: 100; makefile: 93; xml: 27; javascript: 4
file content (15 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (27)
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)