Changeset 3523
- Timestamp:
- Aug 22, 2006, 12:35:25 PM (19 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
SConstruct
r3414 r3523 61 61 Export('env') 62 62 63 # Build .pyc files of every .py in here and below.63 # Build .pyc and .pyo files of every .py in here and below. 64 64 files = [] 65 dirs = filter(os.path.isdir, os.listdir('.')) 65 #dirs = filter(os.path.isdir, os.listdir('.')) 66 #Only build the anuga_core directory for now 67 dirs = ['anuga_core'] 66 68 while(dirs != []): 67 69 dirs += filter(os.path.isdir, map(lambda x : dirs[0] + os.sep + x, os.listdir(dirs[0]))) … … 71 73 env.Pyc(x + 'c', x) 72 74 73 SConscript([' inundation/SConscript'])75 SConscript(['anuga_core/source/anuga/SConscript']) -
anuga_core/source/anuga/pyvolution/SConscript
r3327 r3523 1 1 Import('env') 2 2 env2 = env.Copy() 3 env2.Append(CPPPATH=['# inundation/utilities'])3 env2.Append(CPPPATH=['#anuga_core/source/anuga/utilities']) 4 4 5 5 env2.SharedLibrary('quantity_ext', ['quantity_ext.c'])
Note: See TracChangeset
for help on using the changeset viewer.