Last change
on this file since 2046 was 1818, checked in by Kana Sugimoto, 14 years ago |
New Development: Yes
JIRA Issue: No (merge)
Ready for Test: Yes
Interface Changes: No
Description:
Merged changes -r1774:1817 in newfiller branch to alma branch
|
-
Property svn:mergeinfo
set to
|
File size:
773 bytes
|
Rev | Line | |
---|
[1082] | 1 | import os,glob,shutil
|
---|
| 2 |
|
---|
| 3 | # import root environment
|
---|
[1135] | 4 | Import( "env")
|
---|
[1782] | 5 | myenv = env.Clone()
|
---|
[1082] | 6 |
|
---|
[1109] | 7 | # gather cpp files
|
---|
[1135] | 8 | cpps = env.SGlob("*.cpp")
|
---|
| 9 | pycpps = env.SGlob("python_*.cpp")
|
---|
[1105] | 10 | for pf in pycpps: cpps.remove(pf)
|
---|
[1082] | 11 |
|
---|
| 12 | # location of libcasav.a
|
---|
[1105] | 13 | myenv.Prepend( LIBPATH = ['#/build'] )
|
---|
[1082] | 14 | myenv['SHLIBPREFIX']="" #gets rid of lib prefix
|
---|
[1325] | 15 | myenv.Append(CCFLAGS=["-DWCSLIB_GETWCSTAB"])
|
---|
[1082] | 16 | # need to create library here to fool scons linker
|
---|
[1121] | 17 | libasap = myenv.StaticLibrary(target = "asap", source = cpps)
|
---|
| 18 | myenv.Prepend( LIBS = ['asap'] )
|
---|
| 19 |
|
---|
[1082] | 20 | # Finally create the library for the module
|
---|
[1328] | 21 | if not hasattr(myenv, "LoadableModule"):
|
---|
| 22 | myenv.LoadableModule = myenv.SharedLibrary
|
---|
[1325] | 23 | so = myenv.LoadableModule( target = "_asap.so", source = pycpps, SHLIBSUFFIX="" )
|
---|
[1121] | 24 | #test = myenv.Program("test", cpps)
|
---|
[1082] | 25 | Return("so")
|
---|
[1121] | 26 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.