mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 15:28:11 -05:00
Add code generation on compiling to premake scripts using custom build commands
This commit is contained in:
8
thirdparty/libtomcrypt.lua
vendored
8
thirdparty/libtomcrypt.lua
vendored
@ -11,9 +11,11 @@ function libtomcrypt:include()
|
||||
end
|
||||
|
||||
function libtomcrypt:link()
|
||||
links {
|
||||
"libtomcrypt"
|
||||
}
|
||||
links "libtomcrypt"
|
||||
end
|
||||
|
||||
function libtomcrypt:use()
|
||||
|
||||
end
|
||||
|
||||
function libtomcrypt:project()
|
||||
|
8
thirdparty/libtommath.lua
vendored
8
thirdparty/libtommath.lua
vendored
@ -7,9 +7,11 @@ function libtommath:include()
|
||||
end
|
||||
|
||||
function libtommath:link()
|
||||
links {
|
||||
"libtommath"
|
||||
}
|
||||
links "libtommath"
|
||||
end
|
||||
|
||||
function libtommath:use()
|
||||
|
||||
end
|
||||
|
||||
function libtommath:project()
|
||||
|
8
thirdparty/salsa20.lua
vendored
8
thirdparty/salsa20.lua
vendored
@ -7,9 +7,11 @@ function salsa20:include()
|
||||
end
|
||||
|
||||
function salsa20:link()
|
||||
links {
|
||||
"salsa20"
|
||||
}
|
||||
links "salsa20"
|
||||
end
|
||||
|
||||
function salsa20:use()
|
||||
|
||||
end
|
||||
|
||||
function salsa20:project()
|
||||
|
8
thirdparty/zlib.lua
vendored
8
thirdparty/zlib.lua
vendored
@ -12,9 +12,11 @@ function zlib:include()
|
||||
end
|
||||
|
||||
function zlib:link()
|
||||
links {
|
||||
"zlib"
|
||||
}
|
||||
links "zlib"
|
||||
end
|
||||
|
||||
function zlib:use()
|
||||
|
||||
end
|
||||
|
||||
function zlib:project()
|
||||
|
Reference in New Issue
Block a user