Skip to content
Snippets Groups Projects
Commit 2619ece5 authored by 最萌小汐's avatar 最萌小汐
Browse files

remove lni

parent 112a45b4
No related branches found
No related tags found
No related merge requests found
[submodule "3rd/luamake"]
path = 3rd/luamake
url = https://github.com/actboy168/luamake
[submodule "3rd/lni"]
path = 3rd/lni
url = https://github.com/actboy168/lni
[submodule "3rd/bee.lua"]
path = 3rd/bee.lua
url = https://github.com/actboy168/bee.lua
......
Subproject commit 8222dc4faa62183a594f44466ebcd39ab91632c7
......@@ -13,17 +13,6 @@ lm:import '3rd/bee.lua/make.lua'
lm.rootdir = '3rd/'
lm:shared_library 'lni' {
deps = platform.OS == "Windows" and "lua54" or "lua",
sources = {
'lni/src/main.cpp',
},
links = {
platform.OS == "Linux" and "stdc++",
},
visibility = 'default',
}
lm:shared_library 'lpeglabel' {
deps = platform.OS == "Windows" and "lua54" or "lua",
sources = 'lpeglabel/*.c',
......@@ -52,7 +41,6 @@ lm:build 'install' {
'$luamake', 'lua', 'make/install.lua', lm.plat,
deps = {
'lua',
'lni',
'lpeglabel',
'bee',
'bootstrap',
......
......@@ -10,7 +10,6 @@ local exe = platform == 'msvc' and ".exe" or ""
local dll = platform == 'msvc' and ".dll" or ".so"
fs.create_directories(output)
fs.copy_file(bindir / 'lni'..dll, output / 'lni'..dll, true)
fs.copy_file(bindir / 'lpeglabel'..dll, output / 'lpeglabel'..dll, true)
fs.copy_file(bindir / 'bee'..dll, output / 'bee'..dll, true)
fs.copy_file(bindir / 'lua'..exe, output / 'lua-language-server'..exe, true)
......
......@@ -24,7 +24,6 @@ local function loadAllLibs()
assert(require 'bee.subprocess')
assert(require 'bee.thread')
assert(require 'bee.socket')
assert(require 'lni')
assert(require 'lpeglabel')
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment