12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- src = files([
- 'dock_renderer.vala',
- 'node_renderer.vala',
- 'default_node_renderer.vala',
- 'dockline_node_renderer.vala',
- 'minimap.vala',
- 'node.vala',
- 'nodeview.vala',
- 'layout.vala',
- 'drawinghelper.c'
- ])
- gtkflow3 = library('gtkflow3-' + api,
- src,
- dependencies: [glib, gobject, gtk3, math],
- link_with: gflow,
- include_directories: gflow_inc,
- vala_gir: 'GtkFlow3-' + api + '.gir',
- install: true)
- gtkflow3_inc = include_directories('.')
- custom_target('gtkflow3-typelib',
- command: [g_ir_compiler, '--output', '@OUTPUT@', meson.current_build_dir() + '/GtkFlow3-' + api + '.gir',
- '--includedir', gflow_girdir,
- '--shared-library', get_option('prefix') + '/' + get_option('libdir') + '/libgtkflow3-'+ api +'.so'],
- output: 'GtkFlow3-' + api + '.typelib',
- depends: gtkflow3,
- install: true,
- install_dir: get_option('libdir') + '/girepository-1.0')
- girfilename3 = meson.current_build_dir() + '/GtkFlow-' + api + '.gir'
- run_command('touch', girfilename3)
- install_data(sources: girfilename3,
- install_dir: get_option('datadir') + '/gir-1.0')
- vapifilename3 = meson.current_build_dir() + '/gtkflow3-' + api + '.vapi'
- run_command('touch', vapifilename3)
- install_data(sources: vapifilename3,
- install_dir: get_option('datadir') + '/vala/vapi')
- headerfilename3 = meson.current_build_dir () + '/gtkflow3-' + api + '.h'
- run_command('touch', headerfilename3)
- install_headers(headerfilename3,
- subdir: 'gtkflow3-' + api)
- install_data(sources: [meson.current_source_dir() + '/gtkflow3-' + api + '.deps'],
- install_dir: get_option('datadir') + '/vala/vapi')
- pkgconfig.generate(libraries: [gflow, gtkflow3],
- subdirs: 'gtkflow3-' + api,
- version: api,
- name: 'gtkflow3',
- filebase: 'gtkflow3-' + api,
- requires: ['glib-2.0', 'gobject-2.0', 'gflow-' + api],
- description: 'A library to create flowgraphs in GTK+')
- if get_option('enable_valadoc')
- valadoc = find_program('valadoc')
- gtkflow3_docs = custom_target('gtkflow_apidocs',
- depends: gflow,
- input: src,
- install: true,
- # FIXME: Installing to tmp, so the target will be built
- # the problem is we cannot access a subfolder of the
- # buildtarget via the output parameter.
- # Find a nicer solution
- install_dir: '/tmp',
- command: [valadoc, '-o', 'libgtkflow/gtkflow3-' + api, '--doclet', 'devhelp', '@INPUT@',
- '--pkg', 'gtk+-3.0', '--vapidir=' + meson.current_build_dir() + '/../libgflow/', '--pkg', 'gflow-' + api,
- '--force'],
- output: 'gtkflow3-'+ api)
- install_subdir(meson.current_build_dir() + '/gtkflow3-' + api + '/gtkflow3-' + api,
- install_dir: get_option('datadir') + '/devhelp/books',
- )
- endif
|