Thanks for your excellent work!
I successfully built the project on windows 10 x64, but when I run the exe for the three example jsons provided, I got them fail on the assertion(afterSize-beforeSize == 1)
which is in the rtcommon.h
`
size_t afterSize = mMeshes.size();
// we can't have > 1 mesh per light source
assert(afterSize - beforeSize == 1);
`
How should I deal with that?
Or is there possibility that we use some wrong dependencies?