diff --git a/scripts/tundra/syntax/llvm.lua b/scripts/tundra/syntax/llvm.lua new file mode 100644 index 00000000..9fdf6c67 --- /dev/null +++ b/scripts/tundra/syntax/llvm.lua @@ -0,0 +1,7 @@ +module(..., package.seeall) + +local pkgconfig = require "tundra.syntax.pkgconfig" + +function Configure(name, ctor) + return pkgconfig.ConfigureRaw("llvm-config --cflags --libs", name, ctor) +end