RuntimeCompiledCPlusPlus icon indicating copy to clipboard operation
RuntimeCompiledCPlusPlus copied to clipboard

Simplify project structure.

Open dougbinks opened this issue 10 years ago • 2 comments

Move Systems, Renderer, and Common into SimpleTest project.

dougbinks avatar Jan 14 '15 16:01 dougbinks

+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.

falafflepotatoe avatar Oct 25 '15 06:10 falafflepotatoe

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!

dougbinks avatar Oct 25 '15 09:10 dougbinks