evas - loaders - jp2k - re-enable in the build after it was lost

it seems to have been forgotten. bring it back to building again

@fix
This commit is contained in:
Carsten Haitzler 2020-01-25 20:16:47 +00:00
parent c6349ffd60
commit 8ec6e28b7c
2 changed files with 3 additions and 0 deletions

1
README
View File

@ -426,6 +426,7 @@ Required by default:
* libpng
* libjpeg
* openjpeg2
* gstreamer (Ensure all codecs you want are installed.)
* zlib
* luajit (lua 5.1 or 5.2 support optional)

View File

@ -8,6 +8,7 @@ png = dependency('libpng')
tiff = dependency('libtiff-4', required: get_option('evas-loaders-disabler').contains('tiff') == false)
giflib = cc.find_library('gif')
webp = dependency('libwebp', required: get_option('evas-loaders-disabler').contains('webp') == false)
libopenjp2 = dependency('libopenjp2', required: get_option('evas-loaders-disabler').contains('jp2k') == false)
evas_image_loaders_file = [
['bmp', 'shared', []],
@ -16,6 +17,7 @@ evas_image_loaders_file = [
['gif', 'shared', [giflib]],
['ico', 'shared', []],
['jpeg', 'static', [jpeg]],
['jp2k', 'shared', [libopenjp2]],
['pmaps', 'shared', []],
['png', 'static', [png]],
['psd', 'shared', []],