replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / resource / SConscript
1 #******************************************************************
2 #
3 # Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 #
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 ##
22 # 'resource' sub-project main build script
23 #
24 ##
25
26 Import('env')
27
28 target_os = env.get('TARGET_OS')
29 src_dir = env.get('SRC_DIR')
30 rd_mode = env.get('RD_MODE')
31
32 if target_os == 'tizenrt' and not env.get('RELEASE'):
33         env.AppendUnique(CCFLAGS = ['-g'])
34
35 # Build liblogger
36 SConscript('csdk/logger/SConscript')
37
38 if target_os not in ['arduino', 'darwin', 'ios', 'android', 'msys_nt', 'windows', 'tizenrt']:
39         env.AppendUnique(LIBS=['rt'])
40
41 # Download (if not already present) & build libcoap
42 SConscript('#extlibs/libcoap/SConscript')
43
44 # Build C Common dependencies
45 SConscript('c_common/SConscript')
46
47 # Build connectivity
48 SConscript('csdk/connectivity/SConscript')
49
50 if env.get('ROUTING') in ['GW', 'EP']:
51         # Build Routing
52         SConscript('csdk/routing/SConscript')
53
54 if 'CLIENT' in rd_mode or 'SERVER' in rd_mode:
55     SConscript('csdk/resource-directory/SConscript')
56
57 # Build libocsrm
58 SConscript('csdk/security/SConscript')
59
60 # Build liboctbstack
61 SConscript('csdk/SConscript')
62
63 if target_os not in ['arduino','darwin', 'tizenrt']:
64         # Build liboc_logger
65         SConscript('oc_logger/SConscript')
66
67         # Build liboc
68         SConscript('src/SConscript')
69
70 #if target_os not in ['arduino','darwin','ios','android', 'tizenrt']:
71         # Build examples
72 #       SConscript('examples/SConscript')
73
74 if target_os in ['linux', 'windows']:
75         # Build C Samples
76         SConscript('csdk/stack/test/linux/SConscript')
77         SConscript('csdk/stack/samples/linux/SimpleClientServer/SConscript')
78
79         if env.get('SECURED') == '1':
80                 # Build secure samples
81                 SConscript('csdk/stack/samples/linux/secure/SConscript')
82
83         # Build C/C++ unit tests
84         SConscript('unit_tests.scons')
85
86 elif target_os == 'darwin':
87         env.Command('../../out/darwin/iotivity-csdk.framework',None,src_dir + '/tools/darwin/mkfwk_osx.sh')
88         # Build linux samples for now
89         SConscript('csdk/stack/samples/linux/SimpleClientServer/SConscript')
90
91         # Build C stack's unit tests.
92         SConscript('unit_tests.scons')
93
94 elif target_os == 'arduino':
95         SConscript('csdk/stack/samples/arduino/SimpleClientServer/ocserver/SConscript')
96
97 elif target_os == 'msys_nt':
98         # Build secure samples. Using linux samples for now.
99         SConscript('csdk/stack/samples/linux/secure/SConscript')
100
101         # Build C/C++ unit tests
102         SConscript('unit_tests.scons')