source: test_all.py @ 2247

Last change on this file since 2247 was 2000, checked in by ole, 19 years ago

Compilation added

File size: 482 bytes
Line 
1import os
2
3buildroot = os.getcwd()
4os.chdir('inundation')
5print 'Changing to', os.getcwd()       
6
7#entries = listdir('.')
8
9
10#Attempt to compile all extensions
11
12os.chdir('utilities')
13execfile('compile.py')
14
15os.chdir('..')
16os.chdir('pyvolution')
17execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
18
19os.chdir('..')
20os.chdir('pmesh')
21execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
22
23os.chdir(buildroot)   
24#execfile('test_all.py')
25   
Note: See TracBrowser for help on using the repository browser.