STL on android
-
Hi,
I'm trying to compile a Qt project for adroid against a library that uses STL. Linking fails due to STL symbols not being found. Googling around I found that this could be overcome by defining following in Android.mk:
APP_STL := stlport_static
APP_CPPFLAGS += -fexceptionsIs there some way replicate this using qt and qmake?