/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk
1 by Gustav Hartvigsson
* Initial code - far from done
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 ()