04 August 2015

Faster Runtime Compiles and Improved Compiler support

Recent code changes have concentrated on getting faster runtime compiles, and improving compiler support.





11 July 2015

Runtime Compiled C++ at Develop:Brighton 2015

I'll be attending Develop:Brighton 2015 (but won't be giving a talk like we did in 2012), so if anyone there would like to meet up and chat about RCC++ then please drop me a line through my twitter account @dougbinks or email me through doug@enkisoftware.com.

04 January 2015

Per-project build intermediate directories and cmake additions.

The latest additions to Runtime Compiled C++ improves cmake support by fixing a few issues with Visual Studio and QtCreator on Windows, and adds per project build intermediate directories.

Developers can now call RuntimeObjectSystem::SetIntermediateDir( const char* path_, unsigned short projectId_ = 0 ); to set a path for the given project id. The main use for this is when a project might include the same source file but compile it with different settings.

Additionally the optimization level used is automatically added to the intermediate directory, so there is no need to clean a build when switching from debug to release and vice versa.

As usual, see the Pull Request for more details.