/bitfield/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/bitfield/trunk
1 by Gustav Hartvigsson
start of project
1
project('bitmap_test', ['c', 'vala'], 
2
          version: '0.1.0',
3
    meson_version: '>= 0.50.0',
4
  default_options: [ 'warning_level=2',
5
                   ],
6
)
7
2 by Gustav Hartvigsson
* encountered a bug in Valac:
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]
1 by Gustav Hartvigsson
start of project
14
15
subdir('src')
16
2 by Gustav Hartvigsson
* encountered a bug in Valac:
17
executable ('main', source_files, dependencies: dependencies)
10 by Gustav Hartvigsson
* Made it able to be compiled as a library
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)