-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.mk
More file actions
22 lines (21 loc) · 987 Bytes
/
Android.mk
File metadata and controls
22 lines (21 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
### _ __ ____
# _ __ ___ _____ ___ __ __ ___ __ / | / / __/
# | _ \/ _ | _ | / _ | / / / / / __/ / / | / / /__
# | __/ __ | ___|/ __ |/ /_/ /__/ __/ /__ / / v / /__
# |_| /_/ |_|_|\_\/_/ |_/____/___/___/____/ /_/ /_/____/
#
##
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := ParallelMERuntime
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_CFLAGS := -Ofast -Wall -Wextra -Werror
LOCAL_CPPFLAGS := -Ofast -Wall -Wextra -Werror -std=c++14 -fexceptions
LOCAL_CPP_FEATURES += exceptions
LOCAL_LDLIBS := -llog -ldl -ljnigraphics
LOCAL_SRC_FILES := src/parallelme/Buffer.cpp src/parallelme/Device.cpp \
src/parallelme/Kernel.cpp src/parallelme/Program.cpp \
src/parallelme/Runtime.cpp src/parallelme/Task.cpp \
src/parallelme/SchedulerFCFS.cpp src/parallelme/SchedulerHEFT.cpp \
src/parallelme/SchedulerPAMS.cpp src/parallelme/dynloader/dynLoader.c
include $(BUILD_SHARED_LIBRARY)