mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Add cli tools
This commit is contained in:
parent
f8d32f6219
commit
cdddf363df
1 changed files with 31 additions and 2 deletions
33
xmake.lua
33
xmake.lua
|
@ -89,12 +89,41 @@ add_files('extern/isocline/src/isocline.c')
|
|||
target_end()
|
||||
|
||||
|
||||
target('luau_cli')
|
||||
_config_project({
|
||||
project_kind = 'static',
|
||||
enable_exception = true
|
||||
})
|
||||
add_files('CLI/Repl.cpp', 'CLI/Flags.cpp', 'CLI/FileUtils.cpp', 'CLI/Profiler.cpp', 'CLI/Coverage.cpp', 'CLI/Require.cpp')
|
||||
add_deps('luau_compiler', 'luau_analysis', 'luau_vm', 'luau_codegen', 'isocline')
|
||||
target_end()
|
||||
|
||||
|
||||
target('luau')
|
||||
_config_project({
|
||||
project_kind = 'binary',
|
||||
enable_exception = true
|
||||
})
|
||||
add_files('CLI/ReplEntry.cpp', 'CLI/Repl.cpp', 'CLI/Flags.cpp', 'CLI/FileUtils.cpp', 'CLI/Profiler.cpp', 'CLI/Coverage.cpp', 'CLI/Require.cpp')
|
||||
add_deps('luau_compiler', 'luau_analysis', 'luau_vm', 'luau_codegen', 'isocline')
|
||||
add_files('CLI/ReplEntry.cpp')
|
||||
add_deps('luau_cli')
|
||||
target_end()
|
||||
|
||||
|
||||
target('luau-compile')
|
||||
_config_project({
|
||||
project_kind = 'binary',
|
||||
enable_exception = true
|
||||
})
|
||||
add_files('CLI/Compile.cpp')
|
||||
add_deps('luau_cli')
|
||||
target_end()
|
||||
|
||||
|
||||
target('luau-analyze')
|
||||
_config_project({
|
||||
project_kind = 'binary',
|
||||
enable_exception = true
|
||||
})
|
||||
add_files('CLI/Compile.cpp')
|
||||
add_deps('luau_cli')
|
||||
target_end()
|
Loading…
Add table
Reference in a new issue