/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to docs/meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-07 18:48:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200607184824-jf14f7a1b1di2i2q
* Initial code - far from done

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
valadoc = find_program ('valadoc', required: false)
 
2
 
 
3
if (valadoc.found ())
 
4
  message ('found valadoc')
 
5
  libvqdrdocs = run_target(
 
6
    'libvqdrdocs',
 
7
    command: [
 
8
      valadoc,
 
9
      '--directory='+meson.current_build_dir() + 'libvqdr',
 
10
      '--basedir='+meson.source_root(),
 
11
      '--package-name=libvqdr',
 
12
      '--package-version='+meson.project_version(),
 
13
      '--pkg=glib-2.0',
 
14
      '--pkg=gio-2.0',
 
15
      '--pkg=gobject-2.0',
 
16
      '--pkg=gee-0.8',
 
17
      '--importdir='+join_paths(glib_dep.get_pkgconfig_variable('prefix'), get_option('datadir'), 'gtk-doc', 'html'),
 
18
      '--force',
 
19
      libvqdr_source_files])
 
20
  
 
21
endif