hotwire/init.lua
2024-10-14 08:35:25 -04:00

27 lines
461 B
Lua

local hotwire_lib = grbc_library(LibraryConfig.new({
name = "libhotwire",
language_type = LanguageType.C,
files = {
grbc_file("src/dlopen.c")
},
lib_type = LibraryType.Static,
requirements = {},
compile_flags = {},
linker_flags = {},
include_dirs = {
grbc_file("src")
},
package_config = PackageConfig.new({
name = "libhotwire",
libraries = {},
include_dirs = {
grbc_file("src")
},
compile_flags = {},
linker_flags = {}
})
}))