Jump to content
  • entries
    941
  • comments
    5,894
  • views
    867,466

Friday


Josh

1,656 views

 Share

My little precompiler is going well. It creates makefiles and can split a build up across multiple files. I am working out the interface with external libraries. Here's an example program:

Print "Hello World!"

And here's the code it outputs and compiles:

#include "Hello World.h"

using namespace codewerks;

//=============================================
// Main Loop
//=============================================
int main(int argc, char* argv[])
{
Print(std::string("Hello World!"));
}

 

I'm confident this will work on both MacOS and Linux. Where things get a little foggier is on the iPhone, and especially on the Android. I'm looking for an Android and an iPhone developer to work with. It would be easiest in the long run if I can account for those platforms from the beginning.

 Share

3 Comments


Recommended Comments

Good news Josh ;)

 

Do you think that a beta version will be out before christmas ?

Are you planning to release a PC version only of the engine at lower price than the multi-platform one ?

Link to comment

I'm curious as to how or why you generate a header file, especially with a parsed string's name.

Other than that, I hope it can save you time, but I also hope the source license will be available in C++.

Link to comment
Guest
Add a comment...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...