mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
42 lines
721 B
Lua
42 lines
721 B
Lua
Unlinker = {}
|
|
|
|
function Unlinker:include()
|
|
includedirs {
|
|
path.join(ProjectFolder(), "Unlinker")
|
|
}
|
|
end
|
|
|
|
function Unlinker:link()
|
|
|
|
end
|
|
|
|
function Unlinker:use()
|
|
dependson "Unlinker"
|
|
end
|
|
|
|
function Unlinker:project()
|
|
local folder = ProjectFolder();
|
|
|
|
project "Unlinker"
|
|
targetdir(TargetDirectoryBin)
|
|
location "%{wks.location}/src/%{prj.name}"
|
|
kind "ConsoleApp"
|
|
language "C++"
|
|
|
|
files {
|
|
path.join(folder, "Unlinker/**.h"),
|
|
path.join(folder, "Unlinker/**.cpp")
|
|
}
|
|
|
|
self:include()
|
|
Utils:include()
|
|
ZoneLoading:include()
|
|
ObjLoading:include()
|
|
ObjWriting:include()
|
|
|
|
Utils:link()
|
|
ZoneLoading:link()
|
|
ObjLoading:link()
|
|
ObjWriting:link()
|
|
end
|