加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SDL2_ttf.lua 657 Bytes
一键复制 编辑 原始数据 按行查看 历史
tony2u 提交于 2021-06-24 14:50 . SDL_Engine supported
SDL2_ttf_DIR="SDL2_ttf-2.0.15/"
project "SDL2_ttf"
do
--kind "ConsoleApp"
--kind "WindowedApp"
--kind "StaticLib"
kind "SharedLib"
language "C"
--language "C++"
flags{
--"WinMain"
--"Unicode",
--"StaticRuntime",
}
files {
SDL2_ttf_DIR.."SDL_ttf.c",
}
includedirs {
SDL_DIR .. "include",
FREETYPE_DIR .. "include",
}
defines {
"WIN32",
"_WINDOWS",
"DLL_EXPORT",
}
if (string.sub(_ACTION, 1, 2) == "vs") then
buildoptions { "/wd4996" }
end
libdirs {}
links {
"SDL2",
"freetype",
}
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化