Merge branch 'master' into windows-port
[platform/upstream/iotivity.git] / extlibs / tinydtls / SConscript
1 # *****************************************************************
2 #
3 #  Copyright 2015 Samsung Electronics 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 # Tinydtls build script
22 ##
23
24 Import('env')
25
26 print "Reading Tinydtls folder script"
27
28 target_os = env.get('TARGET_OS')
29
30 if(target_os) == 'arduino':
31         env.Replace(CFLAGS = env.get('CXXFLAGS'))
32
33 root_dir = './'
34 tinydtls_src_path = root_dir
35
36 dtls_env = env.Clone()
37
38 dtls_env.PrependUnique(CPPPATH = [root_dir])
39 dtls_env.AppendUnique(CPPPATH = [root_dir+'aes/'])
40 dtls_env.AppendUnique(CPPPATH = [root_dir+'ecc/'])
41 dtls_env.AppendUnique(CPPPATH = [root_dir+'sha2/'])
42
43 if target_os not in ['arduino', 'windows', 'winrt']:
44         dtls_env.AppendUnique(CPPDEFINES = ['HAVE_SYS_TIME_H'])
45
46 ######################################################################
47 # Source files and Target(s)
48 ######################################################################
49 tinydtls_src = [
50                 'dtls.c',
51                 'crypto.c',
52                 'ccm.c',
53                 'hmac.c',
54                 'netq.c',
55                 'peer.c',
56                 'dtls_time.c',
57                 'session.c',
58                 'aes/rijndael.c',
59                 'ecc/ecc.c',
60                 'sha2/sha2.c',
61         ]
62
63 dtls_env.AppendUnique(TINYDTLS_SRC = tinydtls_src)
64
65 if not dtls_env.get('RELEASE'):
66         if(target_os) not in ['arduino']:
67                 dtls_env.AppendUnique(TINYDTLS_SRC = ['debug.c'])
68         else:
69                 dtls_env.AppendUnique(CPPDEFINES = ['NDEBUG'])
70 else:
71         dtls_env.AppendUnique(CPPDEFINES = ['NDEBUG'])
72
73 dtls_env.AppendUnique(CPPDEFINES = ['DTLSV12',  'WITH_SHA256', 'DTLS_CHECK_CONTENTTYPE', 'SHA2_USE_INTTYPES_H'])
74
75
76 libtinydtls = dtls_env.StaticLibrary('libtinydtls', dtls_env.get('TINYDTLS_SRC'), OBJPREFIX='libtinydtls_')
77
78 ######################################################################
79 # Generate tinydtls samples
80 #
81 # Note:
82 # Currently there is a bug in debug.h/debug.c which fails compilation
83 # of tinydtls samples in release mode. This bug is being tracked in
84 # IOT-395
85 ######################################################################
86 if not env.get('RELEASE'):
87         samples_env = dtls_env.Clone()
88
89         if target_os not in ['arduino', 'windows', 'winrt']:
90                 samples_env.AppendUnique(CPPDEFINES = ['_GNU_SOURCE'])
91
92         dtlsserver = samples_env.Program('dtls-server', ['tests/dtls-server.c'])
93         dtlsclient = samples_env.Program('dtls-client', ['tests/dtls-client.c'])
94
95         samples_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
96         samples_env.PrependUnique(LIBS = ['tinydtls'])
97
98         Alias("samples", [dtlsserver, dtlsclient])
99
100         samples_env.AppendTarget('samples')
101
102 dtls_env.InstallTarget(libtinydtls, 'libtinydtls');
103