mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-23 05:12:05 +00:00
Added premake files for ufbx
This commit is contained in:
@@ -103,6 +103,7 @@ include "thirdparty/minizip.lua"
|
|||||||
include "thirdparty/salsa20.lua"
|
include "thirdparty/salsa20.lua"
|
||||||
include "thirdparty/webview.lua"
|
include "thirdparty/webview.lua"
|
||||||
include "thirdparty/zlib.lua"
|
include "thirdparty/zlib.lua"
|
||||||
|
include "thirdparty/ufbx.lua"
|
||||||
|
|
||||||
-- ThirdParty group: All projects that are external dependencies
|
-- ThirdParty group: All projects that are external dependencies
|
||||||
group "ThirdParty"
|
group "ThirdParty"
|
||||||
@@ -117,6 +118,7 @@ group "ThirdParty"
|
|||||||
minizip:project()
|
minizip:project()
|
||||||
salsa20:project()
|
salsa20:project()
|
||||||
zlib:project()
|
zlib:project()
|
||||||
|
ufbx:project()
|
||||||
|
|
||||||
if _OPTIONS["modman"] then
|
if _OPTIONS["modman"] then
|
||||||
webview:project()
|
webview:project()
|
||||||
|
|||||||
23
thirdparty/ufbx.lua
vendored
Normal file
23
thirdparty/ufbx.lua
vendored
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user