mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 09:23:24 +00:00

- Fix "no icons" errors generating loaders.cache with .cmd (CI-Cross). ! This is a sub-optimal fix, but it's better than a useless build. - Fix "no interpreter" errors generating .interp with Meson (CI-Native) and generating .interp and copying .typelib with .cmd (Local-Native). ! This is a sub-optimal fix to Local-Native, but plug-ins will work. - Fix "no iso" error copying iso_639.xml with Meson (Local-Native).
15 lines
No EOL
405 B
Meson
15 lines
No EOL
405 B
Meson
subdir('goat-exercises')
|
|
|
|
# Fallback fix to the problem of non-configured interpreters
|
|
if platform_windows and not meson.is_cross_build() and lua.found()
|
|
lua_config = configuration_data()
|
|
lua_config.set('LUA_PATH', '')
|
|
|
|
configure_file(
|
|
input : 'lua.interp.in',
|
|
output: 'lua.interp',
|
|
configuration: lua_config,
|
|
install: true,
|
|
install_dir: gimpplugindir / 'interpreters',
|
|
)
|
|
endif |