Merge branch 'master' into notification-service
[platform/upstream/iotivity.git] / service / notification / cpp-wrapper / provider / SConscript
1 #******************************************************************
2 #
3 # Copyright 2016 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 # Notification Service c++ wrapper build script
23 ##
24
25 import platform
26 Import('env')
27
28 if env.get('RELEASE'):
29         env.AppendUnique(CCFLAGS = ['-Os'])
30         env.AppendUnique(CPPDEFINES = ['NDEBUG'])
31 else:
32         env.AppendUnique(CCFLAGS = ['-g'])
33
34 if env.get('LOGGING'):
35         env.AppendUnique(CPPDEFINES = ['TB_LOG'])
36
37 lib_env = env.Clone()
38 SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env')
39 notification_env = lib_env.Clone()
40
41 target_os = env.get('TARGET_OS')
42
43 ######################################################################
44 # Build flags
45 ######################################################################
46 notification_env.AppendUnique(CPPPATH = ['../../include'])
47 notification_env.AppendUnique(CPPPATH = ['inc'])
48 notification_env.AppendUnique(CPPPATH = ['../common'])
49 notification_env.AppendUnique(CPPPATH = ['../consumer/inc'])
50 notification_env.AppendUnique(CPPPATH = ['../../src/common'])
51
52 notification_env.PrependUnique(LIBS = [
53         'oc_logger',
54         'notification_provider'
55         ])
56 notification_env.AppendUnique(CXXFLAGS = ['-std=c++0x','-frtti'])
57
58 if target_os not in ['windows', 'winrt']:
59         notification_env.AppendUnique(CCFLAGS = ['-O2', '-g', '-Wall', '-fmessage-length=0'])
60
61 if target_os not in ['darwin', 'ios', 'windows', 'winrt']:
62         notification_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
63
64 if target_os == 'linux':
65         notification_env.AppendUnique(LIBS = ['pthread'])
66         
67 if target_os == 'android':
68     notification_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
69     notification_env.PrependUnique(LIBS = ['gnustl_shared', 'log'])
70
71 if not env.get('RELEASE'):
72     notification_env.PrependUnique(LIBS = ['gcov'])
73     notification_env.AppendUnique(CCFLAGS = ['--coverage'])
74
75 if env.get('WITH_CLOUD') == True:
76         notification_env.AppendUnique(CPPDEFINES = ['WITH_CLOUD'])
77
78 ######################################################################
79 # Source files and Targets
80 ######################################################################
81
82 notification_provider_src = [
83         env.Glob('src/*.cpp'),env.Glob('../common/*.cpp')]
84
85 providersdk = notification_env.SharedLibrary('notification_provider_wrapper', notification_provider_src)
86 notification_env.InstallTarget(providersdk, 'libnotification_provider_wrapper')
87 notification_env.UserInstallTargetLib(providersdk, 'libnotification_provider_wrapper')
88
89 providersdk = notification_env.StaticLibrary('notification_provider_wrapper', notification_provider_src)
90 notification_env.InstallTarget(providersdk, 'libnotification_provider_wrapper')
91 notification_env.UserInstallTargetLib(providersdk, 'libnotification_provider_wrapper')