sm8250-common: import gps from LA.UM.9.12.r1-13500.01-SMxx50.QSSI12.0
Change-Id: Ib5a80c095e5e203f90cc0d685758553fd18a7f0c
This commit is contained in:
parent
e4e7e5be57
commit
72410cf795
270 changed files with 66183 additions and 615 deletions
50
gps/geofence/Makefile.am
Normal file
50
gps/geofence/Makefile.am
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
AM_CFLAGS = -Wundef \
|
||||
-Wno-trigraphs \
|
||||
-g -O0 \
|
||||
-fno-inline \
|
||||
-fno-short-enums \
|
||||
-fpic \
|
||||
${GPSUTILS_CFLAGS} \
|
||||
${LOCCORE_CFLAGS} \
|
||||
$(LOCPLA_CFLAGS) \
|
||||
-D__func__=__PRETTY_FUNCTION__ \
|
||||
-std=c++1y
|
||||
|
||||
AM_CPPFLAGS = $(AM_CFLAGS)
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
requiredlibs = \
|
||||
${LOCCORE_LIBS} \
|
||||
$(GPSUTILS_LIBS) \
|
||||
-llog
|
||||
|
||||
h_sources = \
|
||||
GeofenceAdapter.h
|
||||
|
||||
c_sources = \
|
||||
GeofenceAdapter.cpp \
|
||||
location_geofence.cpp
|
||||
|
||||
libgeofencing_la_SOURCES = $(c_sources)
|
||||
if USE_GLIB
|
||||
libgeofencing_la_CFLAGS = -DUSE_GLIB @GLIB_CFLAGS@ $(AM_CFLAGS)
|
||||
libgeofencing_la_CPPFLAGS = -DUSE_GLIB @GLIB_CFLAGS@ $(AM_CFLAGS) $(AM_CPPFLAGS)
|
||||
libgeofencing_la_LDFLAGS = -lstdc++ -Wl,-z,defs @GLIB_LIBS@ $(requiredlibs) -shared -version-info 1:0:0
|
||||
libgeofencing_la_LIBDADD = $(requiredlibs) -lstdc++ @GLIB_LIBS@
|
||||
else
|
||||
libgeofencing_la_CFLAGS = $(AM_CFLAGS)
|
||||
libgeofencing_la_CPPFLAGS = $(AM_CFLAGS) $(AM_CPPFLAGS)
|
||||
libgeofencing_la_LDFLAGS = -lstdc++ -Wl,-z,defs $(requiredlibs) -shared -version-info 1:0:0
|
||||
libgeofencing_la_LIBDADD = $(requiredlibs) -lstdc++
|
||||
endif
|
||||
|
||||
library_include_HEADERS = $(h_sources)
|
||||
|
||||
library_includedir = $(pkgincludedir)
|
||||
|
||||
lib_LTLIBRARIES = libgeofencing.la
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = location-geofence.pc
|
||||
EXTRA_DIST = $(pkgconfig_DATA)
|
||||
Loading…
Add table
Add a link
Reference in a new issue