18 lines
370 B
Plaintext
18 lines
370 B
Plaintext
local grbc_extensions = grbc_library(LibraryConfig.new({
|
|
name = "libfusion",
|
|
language_type = LanguageType.Cpp,
|
|
files = {
|
|
grbc_file("src/ext_fusion.cc")
|
|
},
|
|
lib_type = LibraryType.Shared,
|
|
|
|
requirements = {},
|
|
compile_flags = {},
|
|
linker_flags = {},
|
|
|
|
include_dirs = {
|
|
"../vendor/sol2/include"
|
|
}
|
|
}))
|
|
|
|
grbc_build("ninja") |