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
d8a0908e
Commit
d8a0908e
authored
6 years ago
by
unknown
Browse files
Options
Downloads
Patches
Plain Diff
编译为64位版本
parent
76aba06e
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
3rd/bee.lua
+1
-1
1 addition, 1 deletion
3rd/bee.lua
3rd/luamake
+1
-1
1 addition, 1 deletion
3rd/luamake
make.lua
+19
-10
19 additions, 10 deletions
make.lua
make/install.lua
+3
-4
3 additions, 4 deletions
make/install.lua
with
24 additions
and
16 deletions
bee.lua
@
7b3a80fe
Compare
b9b8cadf
...
7b3a80fe
Subproject commit
b9b8cadf20e8510728c7b275d94150c5cac7eb62
Subproject commit
7b3a80fecb67323312719cae13c18bdf713c5547
This diff is collapsed.
Click to expand it.
luamake
@
24f71957
Compare
fe21c009
...
24f71957
Subproject commit
fe21c0092f2332560ea2c1dc1b5666d5ff8cb6b3
Subproject commit
24f719573092ffd1acf8e267787ed47a26d4e6ab
This diff is collapsed.
Click to expand it.
make.lua
+
19
−
10
View file @
d8a0908e
local
lm
=
require
'luamake'
lm
:
lua_library
'lni'
{
sources
=
'3rd/lni/src/*.cpp'
lm
:
import
'3rd/bee.lua/make.lua'
lm
.
arch
=
'x64'
lm
.
rootdir
=
'3rd/'
lm
:
shared_library
'lni'
{
deps
=
'lua54'
,
sources
=
{
'lni/src/main.cpp'
,
}
}
lm
:
lua_library
'lpeglabel'
{
sources
=
'3rd/lpeglabel/*.c'
lm
:
shared_library
'lpeglabel'
{
deps
=
'lua54'
,
sources
=
'lpeglabel/*.c'
,
ldflags
=
'/EXPORT:luaopen_lpeglabel'
}
lm
:
executable
'rcedit'
{
sources
=
'
3rd/
rcedit/src/*.cc'
,
sources
=
'rcedit/src/*.cc'
,
defines
=
{
'_SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING'
},
...
...
@@ -20,11 +30,6 @@ lm:executable 'rcedit' {
}
}
lm
:
build
'bee'
{
'$luamake'
,
'-C'
,
'3rd/bee.lua'
,
pool
=
'console'
}
lm
:
build
'install'
{
'$luamake'
,
'lua'
,
'make/install.lua'
,
deps
=
{
...
...
@@ -34,3 +39,7 @@ lm:build 'install' {
'rcedit'
}
}
lm
:
default
{
'install'
}
This diff is collapsed.
Click to expand it.
make/install.lua
+
3
−
4
View file @
d8a0908e
...
...
@@ -5,14 +5,13 @@ local CWD = fs.current_path()
local
output
=
CWD
/
'server'
/
'bin'
local
bindir
=
CWD
/
'build'
/
'msvc'
/
'bin'
local
beedir
=
CWD
/
'3rd'
/
'bee.lua'
/
'bin'
/
'msvc_x86_release'
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
(
b
ee
dir
/
'bee.dll'
,
output
/
'bee.dll'
,
true
)
fs
.
copy_file
(
b
ee
dir
/
'lua54.dll'
,
output
/
'lua54.dll'
,
true
)
fs
.
copy_file
(
b
ee
dir
/
'lua.exe'
,
output
/
'lua-language-server.exe'
,
true
)
fs
.
copy_file
(
b
in
dir
/
'bee.dll'
,
output
/
'bee.dll'
,
true
)
fs
.
copy_file
(
b
in
dir
/
'lua54.dll'
,
output
/
'lua54.dll'
,
true
)
fs
.
copy_file
(
b
in
dir
/
'lua.exe'
,
output
/
'lua-language-server.exe'
,
true
)
local
process
=
assert
(
sp
.
spawn
{
...
...
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