1# To use stlport, "include external/stlport/libstlport.mk" in your target.
2
3# We put the STL libraries in front of any user libraries, but we need to
4# keep the RTTI stuff in abi/cpp/include in front of our STL headers.
5LOCAL_C_INCLUDES := \
6	$(filter abi/cpp/include,$(LOCAL_C_INCLUDES)) \
7	external/stlport/stlport \
8	bionic \
9        bionic/libstdc++/include \
10	$(filter-out abi/cpp/include,$(LOCAL_C_INCLUDES))
11
12LOCAL_SHARED_LIBRARIES += libstlport
13