2021-04-19 08:12:55 +02:00
|
|
|
project('lite', 'c', 'cpp', default_options : ['c_std=gnu11', 'cpp_std=c++03'])
|
|
|
|
|
|
|
|
if host_machine.system() == 'darwin'
|
|
|
|
add_languages('objc')
|
|
|
|
endif
|
2020-05-25 12:21:43 +02:00
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
libm = cc.find_library('m', required : false)
|
2020-05-25 12:23:46 +02:00
|
|
|
libdl = cc.find_library('dl', required : false)
|
2021-04-02 16:43:21 +02:00
|
|
|
libx11 = dependency('x11', required : false)
|
2020-06-30 16:48:41 +02:00
|
|
|
lua_dep = dependency('lua5.2', required : false)
|
2020-05-25 12:21:43 +02:00
|
|
|
|
2020-06-30 16:48:41 +02:00
|
|
|
if not lua_dep.found()
|
2021-04-19 08:12:55 +02:00
|
|
|
lua_subproject = subproject('lua', default_options: ['shared=false', 'use_readline=false', 'app=false'])
|
2021-02-19 16:13:27 +01:00
|
|
|
lua_dep = lua_subproject.get_variable('lua_dep')
|
2020-06-30 16:48:41 +02:00
|
|
|
endif
|
2020-06-29 15:26:00 +02:00
|
|
|
|
2020-05-25 12:21:43 +02:00
|
|
|
sdl_dep = dependency('sdl2', method: 'config-tool')
|
|
|
|
|
2020-12-02 00:23:15 +01:00
|
|
|
lite_cargs = []
|
2020-12-03 16:46:18 +01:00
|
|
|
if get_option('portable')
|
2020-12-16 18:03:36 +01:00
|
|
|
lite_datadir = 'data'
|
|
|
|
else
|
|
|
|
lite_datadir = 'share/lite-xl'
|
2020-12-02 00:23:15 +01:00
|
|
|
endif
|
|
|
|
|
2020-05-25 12:21:43 +02:00
|
|
|
lite_include = include_directories('src')
|
2020-12-02 16:03:31 +01:00
|
|
|
foreach data_module : ['core', 'fonts', 'plugins', 'colors']
|
2021-02-19 16:13:27 +01:00
|
|
|
install_subdir('data' / data_module , install_dir : lite_datadir)
|
2020-12-02 16:03:31 +01:00
|
|
|
endforeach
|
2020-05-25 12:21:43 +02:00
|
|
|
|
2020-06-02 23:20:22 +02:00
|
|
|
lite_link_args = []
|
2021-02-17 18:42:38 +01:00
|
|
|
if cc.get_id() == 'gcc' and get_option('buildtype') == 'release'
|
2021-02-19 16:13:27 +01:00
|
|
|
lite_link_args += ['-static-libgcc', '-static-libstdc++']
|
2020-06-02 23:20:22 +02:00
|
|
|
endif
|
|
|
|
|
2020-06-03 12:22:17 +02:00
|
|
|
lite_rc = []
|
|
|
|
if host_machine.system() == 'windows'
|
|
|
|
windows = import('windows')
|
|
|
|
lite_rc += windows.compile_resources('res.rc')
|
|
|
|
endif
|
|
|
|
|
2020-06-04 18:52:01 +02:00
|
|
|
subdir('lib/font_renderer')
|
2020-05-25 12:21:43 +02:00
|
|
|
subdir('src')
|
2020-06-07 09:59:31 +02:00
|
|
|
|