/+junk/vala-bit-field

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/vala-bit-field

« back to all changes in this revision

Viewing changes to meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-05 21:05:07 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200605210507-cf47ohzmnet3ohc4
* encountered a bug in Valac:
https://gitlab.gnome.org/GNOME/vala/-/issues/1003

This makes it so I can't continue with this in any sane way.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
                   ],
6
6
)
7
7
 
8
 
 
 
8
dependencies = []
 
9
 
 
10
dep_glib = dependency ('glib-2.0', required: true)
 
11
dep_gobject = dependency ('gobject-2.0', required: true)
 
12
 
 
13
dependencies += [dep_glib, dep_gobject]
9
14
 
10
15
subdir('src')
11
16
 
 
17
executable ('main', source_files, dependencies: dependencies)