Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / ip_adapter / SConscript
1 #######################################################
2 #       Build IP adapter
3 #######################################################
4
5 Import('env')
6 import os.path
7
8 print "Reading IP adapter script"
9
10 target_os = env.get('TARGET_OS')
11 inc_files = env.get('CPPPATH')
12 secured = env.get('SECURED')
13 src_dir = './ip_adapter/'
14
15
16 # Source files to build common for all platforms
17 common_files = None
18 if target_os == 'arduino':
19     common_files = [ os.path.join(src_dir,
20                                   'caipadapter.c') ]
21 else:
22     common_files = [
23         os.path.join(src_dir, 'caipadapter.c'),
24         os.path.join(src_dir, 'caipserver.c') ]
25
26 # Get list of target-specific source file base names, i.e. no parent
27 # directories prepended to the path.
28 #
29 # Target-specific SConscript files are expected to return that list.
30 target_files = []
31 target_sconscript = os.path.join(target_os, 'SConscript')
32
33 # Check for the existence of the platform-specific SConscript file
34 # relative to the top-level source directory, not the build (variant)
35 # directory, before calling that SConscript file to prevent a missing
36 # file warning platforms that don't provide one.
37 target_sconscript_abspath = str(File(target_sconscript).srcnode().abspath)
38 if os.path.exists(target_sconscript_abspath):
39         target_files = env.SConscript(target_sconscript, exports='src_dir')
40
41 # Now prepend the appropriate parent directories
42 # (e.g. ./ip_adapter/android) to each of the target source files in
43 # the list.
44 target_files = [ os.path.join(src_dir, target_os, f) for f in target_files ]
45
46 # Source files to build for Linux-like platforms
47 if target_os in ['linux','darwin','ios']:
48     target_files += [ os.path.join(src_dir,
49                                    'linux/caipnwmonitor.c') ]
50
51 # The list of BLE adapter source files is a combination of both the
52 # common and target-specific source file lists.
53 env.AppendUnique(CA_SRC = common_files + target_files)