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, python_lib, sys_libs, '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 |
# Call the unit tests SConscript |
43 |
# export the lib target since tests will depend on it |
44 |
# the lib target is a list of file nodes (why? win32 produces more than one output file: .lib, .dll, .pdb) |
45 |
# FIXME: This list handling produces the desired result but can this be done directly with scons File nodes? |
46 |
|
47 |
dep_lib = [libinstall+'/'+str(x) for x in lib] |
48 |
Export('dep_lib') |
49 |
|
50 |
local_env.SConscript(dirs = ['#/finley/test'], build_dir='#/build/$PLATFORM/finley/test', duplicate=0) |
51 |
|
52 |
|
53 |
|
54 |
# FIXME: old stuff |
55 |
|
56 |
# 'dl', |
57 |
# 'util'] \ |
58 |
# + solver_libs \ |
59 |
# + papi_libs |
60 |
|
61 |
|
62 |
#Depends(finley_lib, esysUtils_lib) |
63 |
#Depends(finley_lib, escript_lib) |
64 |
#Depends(finley_lib, paso_lib) |
65 |
|