File: meson.build

package info (click to toggle)
libzim 9.2.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,632 kB
  • sloc: cpp: 14,410; ansic: 530; python: 241; makefile: 8; sh: 5
file content (12 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12

resources_list = 'resources_list.txt'

lib_resources = custom_target('resources',
  input: resources_list,
  output: ['libzim-resources.cpp', 'libzim-resources.h'],
  command:[res_compiler,
           '--cxxfile', '@OUTPUT0@',
           '--hfile', '@OUTPUT1@',
           '--source_dir', '@OUTDIR@',
           '@INPUT@']
)