meson.build: add luajit support
This commit is contained in:
parent
9f1f771d4f
commit
88670be036
1 changed files with 4 additions and 1 deletions
|
@ -17,7 +17,10 @@ add_project_arguments(
|
|||
)
|
||||
|
||||
git = find_program('git', required: false)
|
||||
lua = dependency('lua')
|
||||
lua = dependency('lua', required: false)
|
||||
if not lua.found()
|
||||
lua = dependency('luajit')
|
||||
endif
|
||||
wayland_client = dependency('wayland-client')
|
||||
wayland_protocols = dependency('wayland-protocols')
|
||||
wayland_scanner = dependency('wayland-scanner')
|
||||
|
|
Loading…
Add table
Reference in a new issue