/+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-11-03 19:35:25 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20201103193525-tewczqy146ln4spx
* Made it able to be compiled as a library
* Added C test
* Added more tests to main.vala

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
subdir('src')
16
16
 
17
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)