/+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 src/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:
4
4
  'bit_map.vala',
5
5
  'main.vala'
6
6
])
 
7
 
 
8
lvbitfiled_sources = []
 
9
 
 
10
lvbitfiled_sources += files ([
 
11
  'bit_map.vala'
 
12
])
 
13
 
 
14
c_sources = []
 
15
 
 
16
c_sources += files ([
 
17
  'c_main.c',  
 
18
])