/bitfield/trunk

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

« back to all changes in this revision

Viewing changes to meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-05 15:58:37 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200605155837-3h8f35s4ms5jm7z3
start of project

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
                   ],
6
6
)
7
7
 
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]
 
8
 
14
9
 
15
10
subdir('src')
16
11
 
17
 
executable ('main', source_files, dependencies: dependencies)