blob: ae8662ef4998698a0e7bdbc70da64e13b1f6c11d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
Import('programs_env')
# No sources because then scons tries to link them into the program!
srcs = map(File, [
])
programs_env.Dist(
'cmdline_progress_display.h',
'cmdline_progress_throttle.h',
'download_status_display.cc',
'download_status_display.h',
'teletype.cc',
'teletype.h',
'terminal.cc',
'terminal.h',
'transient_message.h',
)
programs_env.Dist('Makefile.am', 'SConscript')
Return('srcs')
|