如何在vs2015中编写调试lua
展开全部
每次重新创建项目选择win32窗口应用程序并勾选预编译头,然后再项目cpp中加入:
#include<iostream>
#include<lua.hpp>
using namespace std;
在main函数中添加:
lua_State *l = luaL_newstate();
luaL_openlibs(l);
luaL_dofile(l, "main.lua"); //lua文件路径
lua_close(l);
system("pause");
#include<iostream>
#include<lua.hpp>
using namespace std;
在main函数中添加:
lua_State *l = luaL_newstate();
luaL_openlibs(l);
luaL_dofile(l, "main.lua"); //lua文件路径
lua_close(l);
system("pause");
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询