RuntimeCompiledCPlusPlus
RuntimeCompiledCPlusPlus copied to clipboard
Simplify project structure.
Move Systems, Renderer, and Common into SimpleTest project.
+1 would love this if it was just a few files to include into a project
ideally #include rcccp.h
and make main() a static function and go.
That's a different feature request to this one :)
The current RCC++ is designed for any size of project (including very large ones), to be compatible with existing projects, and for rapid recompile times.
A single header file would need to be very large, and so could make large projects compile more slowly, and recompiles would certainly be slower. Having a main function which can be recompiled would mean RCC++ would need to replace the program entry point with another, which would make including it in existing projects harder.
You could build something similar to what you require using the code in Compiler_Platform* as a starting point. Let me know if you get anywhere!