From 40220c2758dda7784ea94ef0f20e0f162f49d527 Mon Sep 17 00:00:00 2001 From: LJW-Dev Date: Sat, 1 Nov 2025 18:08:58 +0800 Subject: [PATCH] Added premake files for ufbx --- premake5.lua | 2 ++ thirdparty/ufbx.lua | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 thirdparty/ufbx.lua diff --git a/premake5.lua b/premake5.lua index ef0a3d56..d9ac894b 100644 --- a/premake5.lua +++ b/premake5.lua @@ -102,6 +102,7 @@ include "thirdparty/minizip.lua" include "thirdparty/salsa20.lua" include "thirdparty/webview.lua" include "thirdparty/zlib.lua" +include "thirdparty/ufbx.lua" -- ThirdParty group: All projects that are external dependencies group "ThirdParty" @@ -116,6 +117,7 @@ group "ThirdParty" minizip:project() salsa20:project() zlib:project() + ufbx:project() if _OPTIONS["modman"] then webview:project() diff --git a/thirdparty/ufbx.lua b/thirdparty/ufbx.lua new file mode 100644 index 00000000..9f8407e4 --- /dev/null +++ b/thirdparty/ufbx.lua @@ -0,0 +1,23 @@ +ufbx = {} + +function ufbx:include(includes) + if includes:handle(self:name()) then + includedirs { + path.join(ThirdPartyFolder(), "ufbx") + } + end +end + +function ufbx:link() +end + +function ufbx:use() + +end + +function ufbx:name() + return "ufbx" +end + +function ufbx:project() +end