- Code: Select all
#include "Hello World.h"
using namespace codewerks;
//=============================================
// Main Loop
//=============================================
int main(int argc, char* argv[])
{
Print(std::string("Hello World!"));
}
How do I even start? Is it possible to build this with GCC in a way that doesn't require the whole Android SDK/NDK? Is there a compiler in the SDK/NDK I can take out and use? I don't want to use Java or Eclipse.



