Adjust indentation size in meson.build
This commit is contained in:
parent
688dc1a7b8
commit
f22a56a651
12
meson.build
12
meson.build
|
@ -6,10 +6,10 @@ libdl = cc.find_library('dl', required : false)
|
||||||
lua_dep = dependency('lua5.2', required : false)
|
lua_dep = dependency('lua5.2', required : false)
|
||||||
|
|
||||||
if not lua_dep.found()
|
if not lua_dep.found()
|
||||||
lua_subproject = subproject('lua', default_options: [
|
lua_subproject = subproject('lua', default_options: [
|
||||||
'shared=disabled', 'use_readline=false'
|
'shared=disabled', 'use_readline=false'
|
||||||
])
|
])
|
||||||
lua_dep = lua_subproject.get_variable('lua_dep')
|
lua_dep = lua_subproject.get_variable('lua_dep')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
sdl_dep = dependency('sdl2', method: 'config-tool')
|
sdl_dep = dependency('sdl2', method: 'config-tool')
|
||||||
|
@ -24,12 +24,12 @@ endif
|
||||||
|
|
||||||
lite_include = include_directories('src')
|
lite_include = include_directories('src')
|
||||||
foreach data_module : ['core', 'fonts', 'plugins', 'colors']
|
foreach data_module : ['core', 'fonts', 'plugins', 'colors']
|
||||||
install_subdir('data' / data_module , install_dir : lite_datadir)
|
install_subdir('data' / data_module , install_dir : lite_datadir)
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
lite_link_args = []
|
lite_link_args = []
|
||||||
if cc.get_id() == 'gcc' and get_option('buildtype') == 'release'
|
if cc.get_id() == 'gcc' and get_option('buildtype') == 'release'
|
||||||
lite_link_args += ['-static-libgcc', '-static-libstdc++']
|
lite_link_args += ['-static-libgcc', '-static-libstdc++']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
lite_rc = []
|
lite_rc = []
|
||||||
|
|
Loading…
Reference in New Issue