Fix build error with scons-4.4.0 version which is based on python3
[platform/upstream/iotivity.git] / extlibs / tinycbor / SConscript
1 #******************************************************************
2 #
3 # Copyright 2015 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 import os
22 import subprocess
23
24 Import('env')
25
26 src_dir = env.get('SRC_DIR')
27 target_os = env.get('TARGET_OS')
28
29 cborDir = os.path.join(src_dir, 'extlibs','tinycbor','tinycbor')
30 cborRevision = 'v0.4'
31
32 if not os.path.exists(cborDir):
33     print(('''
34 *********************************** Error: ****************************************
35 * Please download cbor using the following command:                               *
36 *   $ git clone https://github.com/01org/tinycbor.git extlibs/tinycbor/tinycbor -b %s *
37 ***********************************************************************************
38 ''' % cborRevision))
39     Exit(1)
40
41 start_dir = os.getcwd()
42 os.chdir(cborDir)
43
44 # Tizen uses a separate process to sync to a particular revision of TinyCBOR.
45 # Make sure tinycbor_revision stays in sync with extlibs/tinycbor/prep.sh.
46 # This code also assumes tinycbor_revision is a tag; if it changes to a branch
47 # or an arbitrary commit, disable this check below.
48 if target_os != 'tizen' and os.path.exists('.git/HEAD'):
49     out = subprocess.check_output('git tag -l ' + cborRevision, shell = True)
50     if cborRevision not in out:
51         print(out)
52         print('''
53 *********************************** Error: ****************************************
54 * Your TinyCBOR repo is not up to date with the latest version we require. Please *
55 * update with the following commands:                                             *
56 *     $ cd extlibs/tinycbor/tinycbor                                              *
57 *     $ git fetch                                                                 *
58 ***********************************************************************************
59  ''')
60         Exit(1)
61
62
63 # Point TinyCBOR repo to desired release tag
64 if os.path.exists('.git/HEAD'):
65     cmd = 'git reset --hard ' + cborRevision
66     os.system(cmd)
67 else:
68     print(('Assume TinyCBOR is on tag ', cborRevision))
69
70 os.chdir(start_dir)
71
72 cbor_src = [
73     os.path.join(cborDir,'src/cborparser.c'),
74     os.path.join(cborDir,'src/cborparser_dup_string.c'),
75     os.path.join(cborDir,'src/cborencoder.c'),
76     os.path.join(cborDir,'src/cborerrorstrings.c'),
77     ]
78
79 env['cbor_files'] = cbor_src
80 env.AppendUnique(CPPPATH  = [os.path.join(cborDir, 'src')])
81
82