/vqdr/trunk

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

« back to all changes in this revision

Viewing changes to src/libvqdr/meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-07 18:48:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200607184824-jf14f7a1b1di2i2q
* Initial code - far from done

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
libvqdr_source_files = []
 
2
 
 
3
#add src/common/ to the mix.
 
4
libvqdr_source_files += common_source_files
 
5
 
 
6
libvqdr_source_files += files([
 
7
  'context.vala',
 
8
  'dice.vala',
 
9
  'root_token.vala',
 
10
  'token.vala',
 
11
  'variable.vala',
 
12
  
 
13
  'function/function_token.vala',
 
14
  
 
15
  'operator/add_operator_token.vala',
 
16
  'operator/dice_operator_token.vala',
 
17
  'operator/divide_operator_token.vala',
 
18
  'operator/multiply_operator_token.vala',
 
19
  'operator/operator_token.vala',
 
20
  'operator/subtract_operator_token.vala',
 
21
  'operator/unary_operator.vala',
 
22
  
 
23
  'value/value_token.vala',
 
24
  'value/variable_value_token.vala',
 
25
  'value/constant_value_token.vala',
 
26
])
 
27
 
 
28
 
 
29
subdir_done ()