You were doing well but you need to write the requirement too: [requirements] lefticus/ChaiScript: 1 [includes] chaiscript/*.hpp: lefticus/ChaiScript This way you can keep your includes as: #include "chaiscript/chaiscript.hpp" PD: it is necessary because "bii find" don't work yet with such include mapping. ...
Without knowing the exact error you are getting, I'm guessing you are mis-reading the error message. ChaiScript does not discriminate against file extension when looking for its runtime library. It also does not try to load more than one standard library. This is to deal with the fact that mingw/cygwin...
It is not possible to break into ChaiScript currently. You have two options. You could cause an error to occur (say eval('**');) which would cause an eval error exception and could generate a stack error to show you were you are. See here: https://github.com/ChaiScript/ChaiScript/blob/develop/src/main.cpp#L344 for how you might display the...