forked from google/amber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.mk
42 lines (40 loc) · 1.12 KB
/
Android.mk
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
41
42
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE:=amber
LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti
LOCAL_SRC_FILES:= \
src/amber.cc \
src/amberscript/executor.cc \
src/amberscript/parser.cc \
src/amberscript/pipeline.cc \
src/amberscript/script.cc \
src/buffer.cc \
src/command.cc \
src/command_data.cc \
src/datum_type.cc \
src/engine.cc \
src/executor.cc \
src/format.cc \
src/parser.cc \
src/pipeline_data.cc \
src/recipe.cc \
src/result.cc \
src/script.cc \
src/shader.cc \
src/shader_compiler.cc \
src/tokenizer.cc \
src/value.cc \
src/verifier.cc \
src/vkscript/command_parser.cc \
src/vkscript/datum_type_parser.cc \
src/vkscript/executor.cc \
src/vkscript/format_parser.cc \
src/vkscript/nodes.cc \
src/vkscript/parser.cc \
src/vkscript/script.cc \
src/vkscript/section_parser.cc
LOCAL_STATIC_LIBRARIES:=glslang SPIRV-Tools shaderc
LOCAL_C_INCLUDES:=$(LOCAL_PATH)/include
LOCAL_EXPORT_C_INCLUDES:=$(LOCAL_PATH)/include
include $(BUILD_STATIC_LIBRARY)
include $(LOCAL_PATH)/third_party/Android.mk