You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
373 B

package("blis")
set_description("BLAS-like Library Instantiation Software Framework")
set_license("BSD-3-Clause")
on_fetch(function (package)
local result = {}
result.links = "libblis.lib"
result.includedirs = path.join(os.scriptdir(), "include")
result.linkdirs = path.join(os.scriptdir(), "lib")
return result
end)