mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
94a63902a7
add workaround for VC++ /std:c++17 and /std:c++latest bugs try to add MD/MDd flags, pray it works... update single
19 lines
279 B
C++
19 lines
279 B
C++
#define SOL_CHECK_ARGUMENTS 1
|
|
|
|
#include <sol.hpp>
|
|
#include "../assert.hpp"
|
|
|
|
int main() {
|
|
sol::state lua;
|
|
int x = 0;
|
|
lua.set_function("beep", [&x]{ ++x; });
|
|
lua.script("beep()");
|
|
c_assert(x == 1);
|
|
|
|
sol::function beep = lua["beep"];
|
|
beep();
|
|
c_assert(x == 2);
|
|
|
|
return 0;
|
|
}
|