blob: 14c66e5d37eaae4ec47a26dc88fbb0702c6a9cf8 (
plain)
1
2
3
4
5
6
|
local old_cpath = package.cpath
local cfg = require("gears.filesystem").get_configuration_dir()
package.cpath = package.cpath .. ";" .. cfg .. "quarrel/native/lib?.so"
local qnative = require "qnative"
package.cpath = old_cpath
return qnative
|