1 |
Import('*') |
2 |
|
3 |
local_env=env.Copy() |
4 |
|
5 |
src_dir = local_env.Dir('.').srcnode().abspath |
6 |
|
7 |
import os |
8 |
filenames = os.listdir(src_dir) |
9 |
sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
10 |
headers = [x for x in filenames if os.path.splitext(x)[1] in ['.h']] |
11 |
|
12 |
# Filter unused sources |
13 |
sources.remove('ElementFile_borrowLocalVolume.c') # FIXME: Should this file be removed? |
14 |
|
15 |
# finleycpp has additional source in the CPPAdapter sub-directory. Append these to the list |
16 |
cppadapter_filenames = os.listdir(src_dir+'/CPPAdapter'); |
17 |
sources += ['CPPAdapter/'+x for x in cppadapter_filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
18 |
cppadapter_headers = ['CPPAdapter/'+x for x in cppadapter_filenames if os.path.splitext(x)[1] in ['.h']] |
19 |
|
20 |
if mkl_libs: |
21 |
local_env.Append(CPPDEFINES=['MKL',]) |
22 |
if scsl_libs: |
23 |
local_env.Append(CPPDEFINES=['SCSL',]) |
24 |
if umf_libs: |
25 |
local_env.Append(CPPDEFINES=['UMFPACK',]) |
26 |
if papi_libs: |
27 |
local_env.Append(CPPDEFINES=['PAPI',]) |
28 |
|
29 |
lib_name = 'finleycpp' |
30 |
|
31 |
local_env.Append(LIBS = [boost_lib, 'esysUtils', 'escriptcpp', 'paso']) |
32 |
|
33 |
lib = local_env.SharedLibrary(lib_name, sources) |
34 |
|
35 |
include_path = Dir(lib_name, incinstall) |
36 |
cppadapter_include_path = Dir('CppAdapter', include_path) |
37 |
|
38 |
local_env.Install(include_path, headers ) |
39 |
local_env.Install(cppadapter_include_path, cppadapter_headers ) |
40 |
local_env.Install(libinstall, lib) |
41 |
|
42 |
|
43 |
# FIXME: old stuff |
44 |
|
45 |
#libs = ['escriptcpp', |
46 |
# 'esysUtils', |
47 |
# 'paso', |
48 |
# str(boost_lib), |
49 |
# 'dl', |
50 |
# 'util'] \ |
51 |
# + sys_libs \ |
52 |
# + solver_libs \ |
53 |
# + papi_libs |
54 |
|
55 |
|
56 |
#Depends(finley_lib, esysUtils_lib) |
57 |
#Depends(finley_lib, escript_lib) |
58 |
#Depends(finley_lib, paso_lib) |
59 |
|