Skip to content

Commit

Permalink
Export main() when building for android
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 1, 2016
1 parent 4150824 commit 5ae34ed
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/main.cpp
Expand Up @@ -409,6 +409,11 @@ void myMessageOutput( QtMsgType type, const char *msg )
}
}

#if(ANDROID)
// On Android, there there is a libqgis.so instead of a qgis executable.
// The main method symbol of this library needs to be exported so it can be called by java
APP_EXPORT
#endif
int main( int argc, char *argv[] )
{
#ifdef Q_OS_MACX
Expand Down

0 comments on commit 5ae34ed

Please sign in to comment.