blob: ba83acf0cf6ed773a1efe76be02d7c5af96ffbfd (
plain)
1
2
3
4
5
6
7
8
9
|
# A simple test for the minimal standard C++ library
#
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := test-libstl
LOCAL_SRC_FILES := test-libstl.cpp
include $(BUILD_EXECUTABLE)
|