-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSConscript
More file actions
59 lines (59 loc) · 1.64 KB
/
Copy pathSConscript
File metadata and controls
59 lines (59 loc) · 1.64 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# SConscript for common-v4.5
# Created: Aug 16, 2006 - Jdw
# Updated: Aug 23, 2006 - Jdw
# Add object install
# Mar 30, 2011 jdw clone environment
Import('env')
env=env.Clone()
#
if (len(env.subst('$MYDEBUG')) > 0):
dict = env.Dictionary()
for k,v in dict.items():
print("%s = %s" % (k, str(v)))
#
libName = 'common'
libSrcList =['src/RcsbPlatform.C',
'src/RcsbFile.C',
'src/BlockIO.C',
'src/CifString.C',
'src/Serializer.C',
'src/GenString.C',
'src/GenCont.C',
'src/Exceptions.C',
'src/DataInfo.C',
'src/mapped_vector.C',
'src/mapped_ptr_vector.C']
libObjList = [s.replace('.C','.o') for s in libSrcList]
#
libIncList =['include/RcsbPlatform.h',
'include/RcsbFile.h',
'include/BlockIO.h',
'include/CifString.h',
'include/Serializer.h',
'include/rcsb_types.h',
'include/GenString.h',
'include/GenCont.h',
'include/Exceptions.h',
'include/DataInfo.h',
'include/mapped_vector.h',
'include/mapped_ptr_vector.h',
'src/mapped_vector.C',
'src/mapped_ptr_vector.C']
#
myLib=env.Library(libName,libSrcList)
#
#
env.Install(env.subst('$MY_LIB_INSTALL_PATH'),myLib)
env.Alias('install-lib',env.subst('$MY_LIB_INSTALL_PATH'))
#
env.Install(env.subst('$MY_INCLUDE_INSTALL_PATH'),libIncList)
env.Alias('install-include',env.subst('$MY_INCLUDE_INSTALL_PATH'))
#
env.Default('install-lib','install-include')
#
env.Install(env.subst('$MY_OBJ_INSTALL_PATH'),libObjList)
env.Alias('install-obj',env.subst('$MY_OBJ_INSTALL_PATH'))
#
env.Default('install-lib','install-include','install-obj')
#