Fix build error with scons-4.4.0 version which is based on python3
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / tcp_adapter / SConscript
1 #######################################################
2 #       Build TCP adapter
3 #######################################################
4
5 Import('env')
6 import os.path
7
8 print("Reading TCP adapter script")
9
10 target_os = env.get('TARGET_OS')
11 inc_files = env.get('CPPPATH')
12 secured = env.get('SECURED')
13 src_dir = './tcp_adapter/'
14
15
16 # Source files to build common for all platforms
17 common_files = None
18 if target_os in ['linux', 'tizen', 'android', 'ios', 'tizenrt']:
19     common_files = [
20         os.path.join(src_dir, 'catcpadapter.c'),
21         os.path.join(src_dir, 'catcpserver.c'),
22         os.path.join(src_dir, 'catcpserver_mutex.c'),]
23 else :
24     common_files = [os.path.join(src_dir, 'catcpadapter.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
48 # The list of TCP adapter source files is a combination of both the
49 # common and target-specific source file lists.
50 env.AppendUnique(CA_SRC = common_files + target_files)