内容简介:VS2013编译Lua5.3.x动态链接库
首先先从官网下载 Lua 5.3.x源码 http://www.lua.org/download.html
打开VS2013 IDE 新建一win32空项目
右击项目选择添加 添加除了lua.h、lua.c、lualib.h、luac.c以外的所有后缀为.h和.c的文件。
编译生成
测试下动态链接库建一空的win32项目
右击项目属性 进行配置
输入外部的dll链接库的目录
头文件引入以下五个文件
建一测试 main.cpp文件 内容如下
#include <iostream> using namespace std; #include "lua.hpp" int main() { lua_State *l = luaL_newstate(); luaL_openlibs(l); luaL_dofile(l, "main.lua"); lua_close(l); system("pause"); return 0; }
在建一 main.lua文件 内容如下
print("hello world")
编译生成
进行调试 在调试之前 先把 dll放在exe同目录下
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 预处理器、编译器、汇编、链接
- C语言的编译链接过程的介绍
- Linux 环境下 gcc 链接库 编译、链接(概览) 以及 自动化工具Makefile的编写
- iOS开发你不知道的事-编译&链接
- Webpack如何引入CDN链接来优化编译后的体积
- 链接时找不到C库,错误编译`boost :: program_options`的例子
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
A Philosophy of Software Design
John Ousterhout / Yaknyam Press / 2018-4-6 / GBP 14.21
This book addresses the topic of software design: how to decompose complex software systems into modules (such as classes and methods) that can be implemented relatively independently. The book first ......一起来看看 《A Philosophy of Software Design》 这本书的介绍吧!