mirror of
https://github.com/diamante0018/master-tool.git
synced 2025-04-20 19:55:44 +00:00
55 lines
683 B
Lua
55 lines
683 B
Lua
libtommath = {
|
|
source = path.join(dependencies.basePath, "libtommath"),
|
|
}
|
|
|
|
function libtommath.import()
|
|
links {
|
|
"libtommath"
|
|
}
|
|
|
|
libtommath.includes()
|
|
end
|
|
|
|
function libtommath.includes()
|
|
includedirs {
|
|
libtommath.source
|
|
}
|
|
|
|
if os.istarget("windows") then
|
|
defines {
|
|
"MP_NO_DEV_URANDOM",
|
|
}
|
|
end
|
|
|
|
defines {
|
|
"LTM_DESC",
|
|
"__STDC_IEC_559__",
|
|
}
|
|
end
|
|
|
|
function libtommath.project()
|
|
project "libtommath"
|
|
language "C"
|
|
cdialect "C89"
|
|
|
|
libtommath.includes()
|
|
|
|
files {
|
|
path.join(libtommath.source, "*.c"),
|
|
}
|
|
|
|
defines {
|
|
"_LIB"
|
|
}
|
|
|
|
removedefines {
|
|
"_DLL",
|
|
"_USRDLL"
|
|
}
|
|
|
|
warnings "Off"
|
|
kind "StaticLib"
|
|
end
|
|
|
|
table.insert(dependencies, libtommath)
|