diff options
Diffstat (limited to 'server-beta/platform.lua')
-rw-r--r-- | server-beta/platform.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/server-beta/platform.lua b/server-beta/platform.lua new file mode 100644 index 00000000..5384ad3d --- /dev/null +++ b/server-beta/platform.lua @@ -0,0 +1,26 @@ +local currentPath = debug.getinfo(1, 'S').source:sub(2) +local rootPath = currentPath:gsub('[^/\\]-$', '') +if package.loadlib(rootPath .. 'Windows/bin/bee.dll', 'luaopen_bee_platform') then + if rootPath == '' then + rootPath = '.\\' + end + package.cpath = rootPath .. 'Windows\\bin\\?.dll' + package.path = rootPath .. 'src\\?.lua' + .. ';' .. rootPath .. 'src\\?\\init.lua' +elseif package.loadlib(rootPath .. 'macOS/bin/bee.so', 'luaopen_bee_platform') then + if rootPath == '' then + rootPath = './' + end + package.cpath = rootPath .. 'macOS/bin/?.so' + package.path = rootPath .. 'src/?.lua' + .. ';' .. rootPath .. 'src/?/init.lua' +elseif package.loadlib(rootPath .. 'Linux/bin/bee.so', 'luaopen_bee_platform') then + if rootPath == '' then + rootPath = './' + end + package.cpath = rootPath .. 'Linux/bin/?.so' + package.path = rootPath .. 'src/?.lua' + .. ';' .. rootPath .. 'src/?/init.lua' +else + error([[It doesn't seem to support your OS, please let me know at https://github.com/sumneko/lua-language-server/issues]]) +end |