11 |
sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
12 |
headers = [x for x in filenames if os.path.splitext(x)[1] in ['.h']] |
headers = [x for x in filenames if os.path.splitext(x)[1] in ['.h']] |
13 |
|
|
14 |
if mpi_libs: |
local_env.Append(LIBS = [ "paso" ] + mpi_libs + python_libs + sys_libs) |
|
local_env.Append(CPPDEFINES=['MKL',]) |
|
|
local_env.Append(LIBS = mpi_libs) |
|
|
local_env.Append(LIBS = [ "paso" ] + mpi_libs + python_libs) |
|
15 |
lib_name = 'pythonMPI' |
lib_name = 'pythonMPI' |
16 |
|
|
17 |
## changed |
## changed |