File: meson.build

package info (click to toggle)
eog 49.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,860 kB
  • sloc: ansic: 27,061; python: 347; xml: 28; makefile: 13; javascript: 9
file content (12 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
libjpegutils = static_library(
  'eog-jpegutils',
  sources: 'transupp-@0@.c'.format(have_jpeg_80 ? '8a' : '6b'),
  include_directories: top_inc,
  dependencies: libjpeg_dep,
)

libjpegutils_dep = declare_dependency(
  include_directories: '.',
  dependencies: libjpeg_dep,
  link_with: libjpegutils,
)