I'm looking into using runtime compiled c++ for my next project and am experiencing some issues running the demo. When I uncomment the and save the color change the file doesn't recompile. I manually clicked the Test RCC++ button inside the options menu which successfully recompiled all the files and reflected my changes to the color of the cells but this isn't a feasible workflow since it takes a pretty long time to recompile everything and defeats the purpose.
When pulling the repo off git i used cmake to generate a visual studio 2015 x64 project. I'm doing an out of source build in the parent folder of the runtime compiled folder Ex:
Source Location: E:\dev\Gnarlysoft\Research\RuntimeCompiledC++\Aurora
Build Location: E:\dev\Gnarlysoft\Research\RuntimeCompiledC++\bin
I read on the wiki that you need to compile with /FC in visual studio to get full filenames and i verified that it's indeed in the compiler options. You can find my command line arguments below:
/GS /TP /W3 /Zc:wchar_t /I"E:\dev\Gnarlysoft\Research\RuntimeCompiledC++\Aurora\External\glfw\include" /I"E:\dev\Gnarlysoft\Research\RuntimeCompiledC++\Aurora\External\libRocket\Include" /I"E:\dev\Gnarlysoft\Research\RuntimeCompiledC++\Aurora\External\assimp\include" /Zi /Gm- /Od /Ob0 /Fd"SimpleTest.dir\Debug\vc140.pdb" /Zc:inline /fp:precise /D "WIN32" /D "_WINDOWS" /D "_DEBUG" /D "CMAKE_INTDIR=\"Debug\"" /D "_MBCS" /errorReport:prompt /WX- /Zc:forScope /RTC1 /GR /Gd /MDd /FC /Fa"Debug/" /EHsc /nologo /Fo"SimpleTest.dir\Debug\" /Fp"SimpleTest.dir\Debug\SimpleTest.pch"
Any suggestions to resolve this would be greatly appreciated.
Thank you,
-Jacob