2021-08-09 19:32:53 +02:00
|
|
|
project('lite-xl',
|
2021-09-11 07:17:55 +02:00
|
|
|
['c'],
|
2022-01-19 18:18:25 +01:00
|
|
|
version : '2.0.5',
|
2021-08-09 19:32:53 +02:00
|
|
|
license : 'MIT',
|
2021-12-28 23:20:23 +01:00
|
|
|
meson_version : '>= 0.42',
|
2022-01-15 00:53:46 +01:00
|
|
|
default_options : [
|
|
|
|
'c_std=gnu11',
|
|
|
|
'wrap_mode=nofallback'
|
|
|
|
]
|
2021-08-09 19:32:53 +02:00
|
|
|
)
|
2021-04-19 08:12:55 +02:00
|
|
|
|
2021-08-09 19:32:53 +02:00
|
|
|
#===============================================================================
|
|
|
|
# Configuration
|
|
|
|
#===============================================================================
|
2021-06-23 16:43:58 +02:00
|
|
|
conf_data = configuration_data()
|
2021-08-09 19:32:53 +02:00
|
|
|
conf_data.set('PROJECT_BUILD_DIR', meson.current_build_dir())
|
|
|
|
conf_data.set('PROJECT_SOURCE_DIR', meson.current_source_dir())
|
|
|
|
conf_data.set('PROJECT_VERSION', meson.project_version())
|
2021-06-23 16:43:58 +02:00
|
|
|
|
2021-08-09 19:32:53 +02:00
|
|
|
#===============================================================================
|
|
|
|
# Compiler Settings
|
|
|
|
#===============================================================================
|
2021-04-19 08:12:55 +02:00
|
|
|
if host_machine.system() == 'darwin'
|
|
|
|
add_languages('objc')
|
|
|
|
endif
|
2020-05-25 12:21:43 +02:00
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
2021-08-09 19:32:53 +02:00
|
|
|
|
2021-10-08 22:10:17 +02:00
|
|
|
lite_includes = []
|
2022-01-15 00:53:46 +01:00
|
|
|
lite_cargs = ['-DSDL_MAIN_HANDLED', '-DPCRE2_STATIC']
|
2021-08-09 19:32:53 +02:00
|
|
|
# On macos we need to use the SDL renderer to support retina displays
|
|
|
|
if get_option('renderer') or host_machine.system() == 'darwin'
|
|
|
|
lite_cargs += '-DLITE_USE_SDL_RENDERER'
|
|
|
|
endif
|
|
|
|
#===============================================================================
|
|
|
|
# Linker Settings
|
|
|
|
#===============================================================================
|
|
|
|
lite_link_args = []
|
|
|
|
if cc.get_id() == 'gcc' and get_option('buildtype') == 'release'
|
2021-09-11 07:17:55 +02:00
|
|
|
lite_link_args += ['-static-libgcc']
|
2021-08-09 19:32:53 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
if host_machine.system() == 'darwin'
|
|
|
|
lite_link_args += ['-framework', 'CoreServices', '-framework', 'Foundation']
|
|
|
|
endif
|
|
|
|
#===============================================================================
|
|
|
|
# Dependencies
|
|
|
|
#===============================================================================
|
2021-08-29 10:15:55 +02:00
|
|
|
if not get_option('source-only')
|
|
|
|
libm = cc.find_library('m', required : false)
|
|
|
|
libdl = cc.find_library('dl', required : false)
|
2021-07-12 18:21:27 +02:00
|
|
|
threads_dep = dependency('threads')
|
2022-01-15 00:53:46 +01:00
|
|
|
|
2022-01-15 01:00:51 +01:00
|
|
|
|
|
|
|
lua_fallback = ['lua', 'lua_dep']
|
|
|
|
lua_quick_fallback = []
|
|
|
|
if get_option('wrap_mode') == 'forcefallback'
|
|
|
|
lua_quick_fallback = lua_fallback
|
|
|
|
endif
|
|
|
|
|
|
|
|
lua_dep = dependency('lua5.4', fallback: lua_quick_fallback, required : false)
|
2021-12-31 13:53:01 +01:00
|
|
|
if not lua_dep.found()
|
|
|
|
lua_dep = dependency('lua', fallback: ['lua', 'lua_dep'],
|
2022-01-15 00:53:46 +01:00
|
|
|
default_options: ['default_library=static', 'line_editing=false', 'interpreter=false']
|
2021-12-31 13:53:01 +01:00
|
|
|
)
|
|
|
|
endif
|
2022-01-15 00:53:46 +01:00
|
|
|
|
|
|
|
pcre2_dep = dependency('libpcre2-8', fallback: ['pcre2', 'libpcre2_8'],
|
|
|
|
default_options: ['default_library=static', 'grep=false', 'test=false']
|
|
|
|
)
|
|
|
|
|
|
|
|
freetype_dep = dependency('freetype2', fallback: ['freetype2', 'freetype_dep'],
|
|
|
|
default_options: ['default_library=static', 'zlib=disabled', 'bzip2=disabled', 'png=disabled', 'harfbuzz=disabled', 'brotli=disabled']
|
|
|
|
)
|
|
|
|
|
|
|
|
sdl_dep = dependency('sdl2', fallback: ['sdl2', 'sdl2_dep'],
|
|
|
|
default_options: ['default_library=static']
|
|
|
|
)
|
|
|
|
|
2021-12-11 21:25:35 +01:00
|
|
|
lite_deps = [lua_dep, sdl_dep, freetype_dep, pcre2_dep, libm, libdl, threads_dep]
|
2021-06-18 20:19:09 +02:00
|
|
|
endif
|
2021-08-09 19:32:53 +02:00
|
|
|
#===============================================================================
|
|
|
|
# Install Configuration
|
|
|
|
#===============================================================================
|
|
|
|
if get_option('portable') or host_machine.system() == 'windows'
|
|
|
|
lite_bindir = '/'
|
|
|
|
lite_docdir = '/doc'
|
|
|
|
lite_datadir = '/data'
|
2021-08-18 14:26:51 +02:00
|
|
|
elif get_option('bundle') and host_machine.system() == 'darwin'
|
|
|
|
lite_cargs += '-DMACOS_USE_BUNDLE'
|
2021-08-09 19:32:53 +02:00
|
|
|
lite_bindir = 'Contents/MacOS'
|
|
|
|
lite_docdir = 'Contents/Resources'
|
|
|
|
lite_datadir = 'Contents/Resources'
|
|
|
|
install_data('resources/icons/icon.icns', install_dir : 'Contents/Resources')
|
2021-09-03 13:50:44 +02:00
|
|
|
configure_file(
|
|
|
|
input : 'resources/macos/Info.plist.in',
|
|
|
|
output : 'Info.plist',
|
|
|
|
configuration : conf_data,
|
|
|
|
install : true,
|
|
|
|
install_dir : 'Contents'
|
|
|
|
)
|
2020-12-16 18:03:36 +01:00
|
|
|
else
|
2021-08-09 19:32:53 +02:00
|
|
|
lite_bindir = 'bin'
|
2021-06-11 23:38:25 +02:00
|
|
|
lite_docdir = 'share/doc/lite-xl'
|
2020-12-16 18:03:36 +01:00
|
|
|
lite_datadir = 'share/lite-xl'
|
2021-08-09 19:32:53 +02:00
|
|
|
if host_machine.system() == 'linux'
|
|
|
|
install_data('resources/icons/lite-xl.svg',
|
|
|
|
install_dir : 'share/icons/hicolor/scalable/apps'
|
|
|
|
)
|
2021-08-31 14:45:00 +02:00
|
|
|
install_data('resources/linux/org.lite_xl.lite_xl.desktop',
|
2021-08-09 19:32:53 +02:00
|
|
|
install_dir : 'share/applications'
|
|
|
|
)
|
2021-08-31 14:45:00 +02:00
|
|
|
install_data('resources/linux/org.lite_xl.lite_xl.appdata.xml',
|
2021-08-09 19:32:53 +02:00
|
|
|
install_dir : 'share/metainfo'
|
|
|
|
)
|
|
|
|
endif
|
2020-12-02 00:23:15 +01:00
|
|
|
endif
|
|
|
|
|
2021-08-09 19:32:53 +02:00
|
|
|
install_data('licenses/licenses.md', install_dir : lite_docdir)
|
|
|
|
|
2021-12-28 23:20:23 +01:00
|
|
|
install_subdir('data/core' , install_dir : lite_datadir, exclude_files : 'start.lua')
|
2021-08-12 09:03:57 +02:00
|
|
|
foreach data_module : ['fonts', 'plugins', 'colors']
|
2021-12-28 23:20:23 +01:00
|
|
|
install_subdir(join_paths('data', data_module), install_dir : lite_datadir)
|
2020-12-02 16:03:31 +01:00
|
|
|
endforeach
|
2020-05-25 12:21:43 +02:00
|
|
|
|
2021-08-12 09:03:57 +02:00
|
|
|
configure_file(
|
|
|
|
input : 'data/core/start.lua',
|
|
|
|
output : 'start.lua',
|
|
|
|
configuration : conf_data,
|
2021-12-28 23:20:23 +01:00
|
|
|
install_dir : join_paths(lite_datadir, 'core'),
|
2021-08-09 19:32:53 +02:00
|
|
|
)
|
2021-08-12 09:03:57 +02:00
|
|
|
|
2021-08-29 10:15:55 +02:00
|
|
|
if not get_option('source-only')
|
2021-10-08 22:10:17 +02:00
|
|
|
subdir('lib/dmon')
|
2021-08-29 10:15:55 +02:00
|
|
|
subdir('src')
|
|
|
|
subdir('scripts')
|
|
|
|
endif
|