a86fe421ea8b2ba0cc533e76f1c4757a7d349713
[platform/upstream/iotivity.git] / service / notification / 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 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 # Build flags
44 ######################################################################
45 notification_env.AppendUnique(CPPPATH = ['include'])
46 notification_env.AppendUnique(CPPPATH = ['src/common'])
47 notification_env.AppendUnique(CPPPATH = ['src/provider'])
48 notification_env.AppendUnique(CPPPATH = ['src/consumer'])
49 notification_env.AppendUnique(CPPPATH = ['../../resource/csdk/stack/include'])
50 notification_env.AppendUnique(CPPPATH = ['../../resource/csdk/connectivity/api'])
51
52 notification_env.PrependUnique(LIBS = [
53         'octbstack',
54         'oc_logger',
55         'connectivity_abstraction',
56         'libcoap'
57         ])
58
59 if target_os not in ['windows', 'winrt']:
60         notification_env.AppendUnique(CCFLAGS = ['-O2', '-g', '-Wall', '-fmessage-length=0'])
61
62 if target_os not in ['darwin', 'ios', 'windows', 'winrt']:
63         notification_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
64
65 if target_os == 'linux':
66         notification_env.AppendUnique(LIBS = ['pthread'])
67
68 if target_os == 'android':
69         notification_env.AppendUnique(CCFLAGS = ['-frtti', '-fexceptions'])
70         notification_env.AppendUnique(LIBS = ['gnustl_shared','log'])
71
72         if not env.get('RELEASE'):
73                 notification_env.AppendUnique(LIBS = ['log'])
74
75 if not env.get('RELEASE'):
76     notification_env.PrependUnique(LIBS = ['gcov'])
77     notification_env.AppendUnique(CCFLAGS = ['--coverage'])
78
79 if 'CLIENT' in notification_env.get('RD_MODE'):
80     notification_env.AppendUnique(CPPDEFINES = ['RD_CLIENT'])
81     
82 if env.get('WITH_CLOUD') == True:       
83         notification_env.AppendUnique(CPPDEFINES = ['WITH_CLOUD'])    
84
85 ######################################################################
86 # Source files and Targets
87 ######################################################################
88
89 notification_provider_src = [
90         env.Glob('src/provider/*.c'), env.Glob('src/common/*.c')]
91 notification_consumer_src = [
92         env.Glob('src/consumer/*.c'), env.Glob('src/common/*.c')]
93
94 providersdk = notification_env.SharedLibrary('notification_provider', notification_provider_src)
95 notification_env.InstallTarget(providersdk, 'libnotification_provider')
96 notification_env.UserInstallTargetLib(providersdk, 'libnotification_provider')
97
98 consumersdk = notification_env.SharedLibrary('notification_consumer', notification_consumer_src)
99 notification_env.InstallTarget(consumersdk, 'libnotification_consumer')
100 notification_env.UserInstallTargetLib(consumersdk, 'libnotification_consumer')
101
102 providersdk = notification_env.StaticLibrary('notification_provider', notification_provider_src)
103 notification_env.InstallTarget(providersdk, 'libnotification_provider')
104 notification_env.UserInstallTargetLib(providersdk, 'libnotification_provider')
105
106 consumersdk = notification_env.StaticLibrary('notification_consumer', notification_consumer_src)
107 notification_env.InstallTarget(consumersdk, 'libnotification_consumer')
108 notification_env.UserInstallTargetLib(consumersdk, 'libnotification_consumer')
109
110 notification_env.UserInstallTargetHeader('include/NSProviderInterface.h',\
111         'service/notification', 'NSProviderInterface.h')
112 notification_env.UserInstallTargetHeader('include/NSConsumerInterface.h',\
113         'service/notification', 'NSConsumerInterface.h')
114
115 # Go to build Unit test
116 #if target_os == 'linux':
117 # SConscript('unittest/SConscript')
118
119 # Go to build sample apps
120 SConscript('examples/SConscript')
121
122 # Go to build jni
123 #if target_os == 'android':
124 #    SConscript('android/SConscript')
125
126 # Go to build c++ wrapper
127 #SConscript('cpp-wrapper/SConscript')