Add premake scripts for projects

This commit is contained in:
Jan
2019-10-22 02:40:06 +02:00
parent cae05efb7b
commit 0d103e24a5
15 changed files with 361 additions and 12 deletions

View File

@ -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"
}