Home | History | Annotate | Download | only in cppf16
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE:= rstest-cppf16
      5 
      6 LOCAL_NDK_STL_VARIANT := c++_static
      7 
      8 LOCAL_SRC_FILES:= \
      9 	compute.cpp
     10 
     11 LOCAL_STATIC_LIBRARIES := \
     12 	libRScpp_static
     13 
     14 LOCAL_LDFLAGS += -llog -ldl
     15 
     16 include frameworks/rs/tests/cpp_api/common.mk
     17 include $(BUILD_EXECUTABLE)
     18