1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2008 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
|
15 |
import os, re |
16 |
Import('*') |
17 |
|
18 |
local_env = clone_env(env) |
19 |
|
20 |
src_dir = local_env.Dir('.').srcnode().abspath |
21 |
|
22 |
# get the relevant file names: |
23 |
src_dir = local_env.Dir('.').srcnode().abspath |
24 |
filenames = [ x for x in os.listdir(src_dir) if os.path.splitext(x)[1] in [".h", ".c", ".cpp"] ] |
25 |
|
26 |
sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
27 |
|
28 |
local_env.Append(LIBS= ['esysUtils','paso'] + local_env['sys_libs'] ) |
29 |
local_env['CCFLAGS'] = re.sub("-O[0-9]", "-g", str(local_env['CCFLAGS'])) # Some of these test files are too large to optimize |
30 |
|
31 |
program = local_env.Program('PasoTests', sources) |
32 |
|