lin
2025-08-01 633231e833e21d5b8b1c00cb15aedb62b3b78e8f
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
34
35
36
37
38
39
40
#
# GNSS World Nanoapp Makefile
#
 
# Environment Checks ###########################################################
 
ifeq ($(CHRE_PREFIX),)
ifneq ($(ANDROID_BUILD_TOP),)
CHRE_PREFIX = $(ANDROID_BUILD_TOP)/system/chre
else
$(error "You must run 'lunch' to setup ANDROID_BUILD_TOP, or explicitly define \
         the CHRE_PREFIX environment variable to point to the CHRE root \
    directory.")
endif
endif
 
# Nanoapp Configuration ########################################################
 
NANOAPP_NAME = gnss_world
NANOAPP_ID = 0x0123456789000005
NANOAPP_VERSION = 0x00000001
 
NANOAPP_NAME_STRING = \"GNSS\ World\"
 
# Common Compiler Flags ########################################################
 
# Include paths.
COMMON_CFLAGS += -I.
COMMON_CFLAGS += -I$(CHRE_PREFIX)/util/include
 
# Defines
COMMON_CFLAGS += -DNANOAPP_MINIMUM_LOG_LEVEL=CHRE_LOG_LEVEL_DEBUG
 
# Common Source Files ##########################################################
 
COMMON_SRCS += gnss_world.cc
 
# Makefile Includes ############################################################
 
include $(CHRE_PREFIX)/build/nanoapp/app.mk