mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 06:49:28 -05:00
Add premake scripts for projects
This commit is contained in:
5
thirdparty/libtomcrypt.lua
vendored
5
thirdparty/libtomcrypt.lua
vendored
@ -1,13 +1,16 @@
|
||||
libtomcrypt = {}
|
||||
|
||||
function libtomcrypt:include()
|
||||
defines{
|
||||
"LTM_DESC"
|
||||
}
|
||||
|
||||
includedirs {
|
||||
path.join(ThirdPartyFolder(), "libtomcrypt/src/headers")
|
||||
}
|
||||
end
|
||||
|
||||
function libtomcrypt:link()
|
||||
self:include()
|
||||
links {
|
||||
"libtomcrypt"
|
||||
}
|
||||
|
1
thirdparty/libtommath.lua
vendored
1
thirdparty/libtommath.lua
vendored
@ -7,7 +7,6 @@ function libtommath:include()
|
||||
end
|
||||
|
||||
function libtommath:link()
|
||||
self:include()
|
||||
links {
|
||||
"libtommath"
|
||||
}
|
||||
|
1
thirdparty/salsa20.lua
vendored
1
thirdparty/salsa20.lua
vendored
@ -7,7 +7,6 @@ function salsa20:include()
|
||||
end
|
||||
|
||||
function salsa20:link()
|
||||
self:include()
|
||||
links {
|
||||
"salsa20"
|
||||
}
|
||||
|
6
thirdparty/zlib.lua
vendored
6
thirdparty/zlib.lua
vendored
@ -1,13 +1,17 @@
|
||||
zlib = {}
|
||||
|
||||
function zlib:include()
|
||||
|
||||
defines {
|
||||
"ZLIB_CONST"
|
||||
}
|
||||
|
||||
includedirs {
|
||||
path.join(ThirdPartyFolder(), "zlib")
|
||||
}
|
||||
end
|
||||
|
||||
function zlib:link()
|
||||
self:include()
|
||||
links {
|
||||
"zlib"
|
||||
}
|
||||
|
Reference in New Issue
Block a user