mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-06-06 08:42:35 +00:00
chore: Remove unused dependency ufbx
This commit is contained in:
@@ -22,6 +22,3 @@
|
||||
[submodule "thirdparty/webview"]
|
||||
path = thirdparty/webview
|
||||
url = https://github.com/Laupetin/webview.git
|
||||
[submodule "thirdparty/ufbx"]
|
||||
path = thirdparty/ufbx
|
||||
url = https://github.com/ufbx/ufbx
|
||||
|
||||
@@ -102,7 +102,6 @@ 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"
|
||||
@@ -117,7 +116,6 @@ group "ThirdParty"
|
||||
minizip:project()
|
||||
salsa20:project()
|
||||
zlib:project()
|
||||
ufbx:project()
|
||||
|
||||
if _OPTIONS["modman"] then
|
||||
webview:project()
|
||||
|
||||
@@ -22,7 +22,6 @@ function ObjLoading:link(links)
|
||||
links:linkto(minizip)
|
||||
links:linkto(zlib)
|
||||
links:linkto(libtomcrypt)
|
||||
links:linkto(ufbx)
|
||||
end
|
||||
|
||||
function ObjLoading:use()
|
||||
@@ -67,5 +66,4 @@ function ObjLoading:project()
|
||||
eigen:include(includes)
|
||||
json:include(includes)
|
||||
libtomcrypt:include(includes)
|
||||
ufbx:include(includes)
|
||||
end
|
||||
Vendored
-1
Submodule thirdparty/ufbx deleted from 13b5df8e89
Vendored
-42
@@ -1,42 +0,0 @@
|
||||
ufbx = {}
|
||||
|
||||
function ufbx:include(includes)
|
||||
if includes:handle(self:name()) then
|
||||
includedirs {
|
||||
path.join(ThirdPartyFolder(), "ufbx")
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
function ufbx:link(links)
|
||||
links:add(self:name())
|
||||
end
|
||||
|
||||
function ufbx:use()
|
||||
|
||||
end
|
||||
|
||||
function ufbx:name()
|
||||
return "ufbx"
|
||||
end
|
||||
|
||||
function ufbx:project()
|
||||
local folder = ThirdPartyFolder()
|
||||
local includes = Includes:create()
|
||||
|
||||
project(self:name())
|
||||
targetdir(TargetDirectoryLib)
|
||||
location "%{wks.location}/thirdparty/%{prj.name}"
|
||||
kind "StaticLib"
|
||||
language "C++"
|
||||
|
||||
files {
|
||||
path.join(folder, "ufbx/*.h"),
|
||||
path.join(folder, "ufbx/*.c")
|
||||
}
|
||||
|
||||
self:include(includes)
|
||||
|
||||
-- Disable warnings. They do not have any value to us since it is not our code.
|
||||
warnings "off"
|
||||
end
|
||||
Reference in New Issue
Block a user