linux: Use sqlite from system like Tizen does
[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', '../../oc_logger/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.AppendUnique(LIBPATH = [rd_env.get('BUILD_DIR')])
46 rd_env.AppendUnique(LIBS = ['octbstack'])
47
48 if target_os not in ['windows']:
49     rd_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-Wextra'])
50
51 if target_os in ['linux']:
52     rd_env.AppendUnique(LIBS = ['pthread'])
53
54 if target_os == 'android':
55     rd_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
56     rd_env.AppendUnique(LIBS = ['gnustl_static'])
57
58     if not env.get('RELEASE'):
59         rd_env.AppendUnique(LIBS = ['log'])
60
61 if target_os in ['linux', 'tizen']:
62     rd_env.ParseConfig('pkg-config --cflags --libs sqlite3')
63 else:
64     rd_env.AppendUnique(CPPPATH = ['../../../extlibs/sqlite3'])
65
66 ######################################################################
67 # Source files and Targets
68 ######################################################################
69 RD_SRC_DIR = 'src/'
70 rd_src = []
71
72 if 'SERVER' in rd_mode:
73     rd_src += [
74             RD_SRC_DIR + 'internal/rd_database.c',
75             RD_SRC_DIR + 'rd_server.c',
76             ]
77     if target_os not in ['linux', 'tizen'] :
78         rd_src += [ '../../../extlibs/sqlite3/sqlite3.c' ]
79
80 if 'CLIENT' in rd_mode:
81     rd_src += [RD_SRC_DIR + 'rd_client.c',]
82
83 if target_os in ['tizen'] :
84     rdsdk = rd_env.SharedLibrary('resource_directory', rd_src)
85 else :
86     rdsdk = rd_env.StaticLibrary('resource_directory', rd_src)
87
88 rd_env.InstallTarget(rdsdk, 'resource_directory')
89 rd_env.UserInstallTargetLib(rdsdk, 'resource_directory')
90
91 if 'CLIENT' in rd_mode:
92     rd_env.UserInstallTargetHeader('include/rd_client.h', 'service/resource-directory', 'rd_client.h')
93
94 if 'SERVER' in rd_mode:
95     rd_env.UserInstallTargetHeader('include/rd_server.h', 'service/resource-directory', 'rd_server.h')
96     rd_env.UserInstallTargetHeader('include/rd_database.h', 'service/resource-directory', 'rd_database.h')
97
98 ######################################################################
99 # Samples for the resource directory
100 ######################################################################
101 if target_os in ['linux']:
102     SConscript('samples/SConscript')
103
104 ######################################################################
105 # Build UnitTests Things Manager
106 ################################################ ######################
107 if target_os in ['linux']:
108     SConscript('unittests/SConscript')