tengine
-
window
build.bat
-
linux 首先安装mysqlclient库
sudo apt install libmysqlclient-dev
编译
./premake gmake cd build make config=debug64
create.bat
- demo
-
bin 引擎执行文件以及用到的动态库
-
tengine 引擎核心脚本
-
boot 你需要创建的启动服务目录
- main.lua 你需要创建的服务启动文件
-
service1 你创建的服务目录
-
service2 你创建的服务目录
-
start.bat 启动
-
创建lua
文件 main.lua
local T = require "tengine" -- 引入引擎脚本
T.p("hello world.")
T.TRACE_MSG("hello world.")
T.DEBUG_MSG("hello world.")
T.INFO_MSG("hello world.")
T.NOTICE_MSG("hello world.")
T.WARNING_MSG("hello world.")
T.ERROR_MSG("hello world.")
T.CRITICAL_MSG("hello world.")
none