27 lines
536 B
Makefile
27 lines
536 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
mono.rs \
|
|
compute.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libRScpp \
|
|
libstlport
|
|
|
|
LOCAL_MODULE:= rstest-compute-getpointer
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
intermediates := $(call intermediates-dir-for,STATIC_LIBRARIES,libRS,TARGET,)
|
|
|
|
LOCAL_C_INCLUDES += external/stlport/stlport bionic/ bionic/libstdc++/include
|
|
LOCAL_C_INCLUDES += frameworks/rs/cpp
|
|
LOCAL_C_INCLUDES += frameworks/rs
|
|
LOCAL_C_INCLUDES += $(intermediates)
|
|
|
|
LOCAL_CLANG := true
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|