1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
from aptitude_build import NonHeaders
srcs = map(File, [
'choice.h',
'choice_indexed_map.h',
'choice_set.h',
'cost.cc',
'cost.h',
'cost_limits.cc',
'cost_limits.h',
'dummy_universe.cc',
'dummy_universe.h',
'dump_universe.h',
'exceptions.h',
'incremental_expression.cc',
'incremental_expression.h',
'problemresolver.h',
'promotion_set.h',
'sanity_check_universe.h',
'search_graph.h',
'solution.h',
])
Import('programs_env')
test = programs_env.Program(target = 'test',
source = ['test.cc', NonHeaders(srcs),
'../util/refcounted_base.cc',
])
Return('srcs')
|