83d809b7ed88ac8522016b634191fefc5c208bd5
[platform/upstream/iotivity.git] / resource / csdk / resource-directory / 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 ##
22 # Resource Directory build script
23 ##
24
25 Import('env')
26 rd_env = env.Clone()
27
28 if rd_env.get('LOGGING'):
29     rd_env.AppendUnique(CPPDEFINES = ['-DTB_LOG'])
30
31 target_os = env.get('TARGET_OS')
32 src_dir = env.get('SRC_DIR')
33 rd_mode = env.get('RD_MODE')
34
35 ######################################################################
36 # Build flags
37 ######################################################################
38 rd_env.AppendUnique(CPPPATH = ['include', 'src/internal', '../stack/include'])
39
40 if 'CLIENT' in rd_mode:
41     rd_env.AppendUnique(CPPDEFINES = ['RD_CLIENT'])
42 if 'SERVER' in rd_mode:
43     rd_env.AppendUnique(CPPDEFINES = ['RD_SERVER'])
44
45 rd_env.PrependUnique(LIBS = ['oc', 'octbstack', 'oc_logger', 'connectivity_abstraction', 'coap'])
46
47 if target_os not in ['windows']:
48     rd_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-Wextra'])
49
50 if target_os in ['linux']:
51     rd_env.AppendUnique(LIBS = ['pthread'])
52
53 if target_os == 'android':
54     rd_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
55     rd_env.AppendUnique(LIBS = ['gnustl_static'])
56
57     if not env.get('RELEASE'):
58         rd_env.AppendUnique(LIBS = ['log'])
59
60 if target_os in ['tizen']:
61     rd_env.ParseConfig('pkg-config --cflags --libs sqlite3')
62 else:
63     rd_env.AppendUnique(CPPPATH = ['../../../extlibs/sqlite3'])
64
65 ######################################################################
66 # Source files and Targets
67 ######################################################################
68 RD_SRC_DIR = 'src/'
69 rd_src = []
70 if 'SERVER' in rd_mode:
71     rd_src += [
72             '../../../extlibs/sqlite3/sqlite3.c',
73             RD_SRC_DIR + 'internal/rd_database.c',
74             RD_SRC_DIR + 'rd_server.c',
75             ]
76 if 'CLIENT' in rd_mode:
77     rd_src += [RD_SRC_DIR + 'rd_client.c',]
78
79 if target_os in ['tizen'] :
80     rdsdk = rd_env.SharedLibrary('resource_directory', rd_src)
81 else :
82     rdsdk = rd_env.StaticLibrary('resource_directory', rd_src)
83
84 rd_env.InstallTarget(rdsdk, 'resource_directory')
85 rd_env.UserInstallTargetLib(rdsdk, 'resource_directory')
86 if 'CLIENT' in rd_mode:
87     rd_env.UserInstallTargetHeader('include/rd_client.h', 'service/resource-directory', 'rd_client.h')
88
89 if 'SERVER' in rd_mode:
90     rd_env.UserInstallTargetHeader('include/rd_server.h', 'service/resource-directory', 'rd_server.h')
91     rd_env.UserInstallTargetHeader('include/rd_database.h', 'service/resource-directory', 'rd_database.h')
92
93 ######################################################################
94 # Samples for the resource directory
95 ######################################################################
96 if target_os in ['linux']:
97     SConscript('samples/SConscript')
98
99 ######################################################################
100 # Build UnitTests Things Manager
101 ################################################ ######################
102 if target_os in ['linux']:
103     SConscript('unittests/SConscript')