Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lua-language-server-srb2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LJ Sonic
lua-language-server-srb2
Commits
2619ece5
Commit
2619ece5
authored
4 years ago
by
最萌小汐
Browse files
Options
Downloads
Patches
Plain Diff
remove lni
parent
112a45b4
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitmodules
+0
-3
0 additions, 3 deletions
.gitmodules
3rd/lni
+0
-1
0 additions, 1 deletion
3rd/lni
make.lua
+0
-12
0 additions, 12 deletions
make.lua
make/install.lua
+0
-1
0 additions, 1 deletion
make/install.lua
test.lua
+0
-1
0 additions, 1 deletion
test.lua
with
0 additions
and
18 deletions
.gitmodules
+
0
−
3
View file @
2619ece5
[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
...
...
This diff is collapsed.
Click to expand it.
lni
@
8222dc4f
Compare
8222dc4f
...
8222dc4f
Subproject commit 8222dc4faa62183a594f44466ebcd39ab91632c7
This diff is collapsed.
Click to expand it.
make.lua
+
0
−
12
View file @
2619ece5
...
...
@@ -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'
,
...
...
This diff is collapsed.
Click to expand it.
make/install.lua
+
0
−
1
View file @
2619ece5
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
test.lua
+
0
−
1
View file @
2619ece5
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment