1

I am working on a project that heavily relies on many c++ objects that I created. In stead of compiling the codes every time when I use different objects, I am thinking using scripts that can instantiate c++ objects and call their functions without recompiling. What are the possible candidates? Thanks for the answer in advance.

CaptainSegFault
  • 82
  • 1
  • 10

1 Answers1

1

sol2 is a good C++ wrapper for Lua: it offers fast execution time and minimal dependencies.

An alterantive is ChaiScript, but it's not as fast as sol2.

Mr.C64
  • 41,637
  • 14
  • 86
  • 162