/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-11-03 21:37:26 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20201103213726-cnc5g98qp233eio6
* removed unused code
* Added a bit of information on how to use this to the comments

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)
 
18
 
 
19
vbitfield = shared_library ('vbitfield',
 
20
  lvbitfiled_sources,
 
21
  dependencies: dependencies)
 
22
 
 
23
executable ('c_main', c_sources,  
 
24
  dependencies : dependencies,
 
25
  link_with : vbitfield)