Android compilation added.

This commit is contained in:
Tulioh
2014-12-19 00:56:55 -02:00
parent 997daa2d49
commit b3b314f01b
27 changed files with 2075 additions and 76 deletions

10
android/android.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <jni.h>
#include <main.cpp>
void android_main( struct android_app* state ) {
int argc = 0;
const char* argv[1];
argv[0] = NULL;
main(argc, argv);
}