]> git.lyx.org Git - features.git/blob - src/support/SConscript
f6a8aac01cca5a6185efa6bd5ce81516e2c0bad2
[features.git] / src / support / SConscript
1 # vi:filetype=python:expandtab:tabstop=2:shiftwidth=2
2
3 # file SConscript
4 #
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # \author Bo Peng
9 # Full author contact details are available in file CREDITS.
10
11 Import('env')
12
13 print "Entering src/supports"
14
15 env.Append(CPPPATH = ['.'])
16
17 env.substFile('package.C', 'package.C.in')
18
19 supports = env.StaticLibrary(
20   target = '$LOCALLIBPATH/supports',
21   source = Split('''
22     FileMonitor.C 
23     abort.C 
24     chdir.C 
25     convert.C 
26     copy.C 
27     environment.C 
28     filefilterlist.C 
29     filename.C 
30     filetools.C 
31     forkedcall.C 
32     forkedcallqueue.C 
33     forkedcontr.C 
34     fs_extras.C 
35     getcwd.C 
36     kill.C 
37     lstrings.C 
38     lyxtime.C 
39     lyxsum.C 
40     mkdir.C 
41     os.C 
42     path.C 
43     package.C 
44     rename.C 
45     socktools.C 
46     systemcall.C 
47     tempname.C 
48     userinfo.C 
49     unlink.C
50   ''')
51 )
52
53 # return the library
54 Return('supports')
55