replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / service / notification / cpp-wrapper / consumer / 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 = ['../provider/inc'])
50 notification_env.AppendUnique(CPPPATH = ['../../src/common'])
51
52 notification_env.PrependUnique(LIBS = [
53         'oc_logger',
54         'oc',
55         'notification_consumer'
56         ])
57
58 notification_env.AppendUnique(CXXFLAGS = ['-std=c++0x','-frtti'])
59
60 if target_os not in ['windows', 'winrt']:
61         notification_env.AppendUnique(CCFLAGS = ['-O2', '-g', '-Wall', '-fmessage-length=0'])
62
63 if target_os not in ['darwin', 'ios', 'windows', 'winrt']:
64         notification_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
65
66 if target_os == 'linux':
67         notification_env.AppendUnique(LIBS = ['pthread'])
68         
69 if target_os == 'android':
70     notification_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
71     notification_env.PrependUnique(LIBS = ['gnustl_shared', 'log'])
72
73 if not env.get('RELEASE') and target_os not in ['ios']:
74     notification_env.PrependUnique(LIBS = ['gcov'])
75     notification_env.AppendUnique(CCFLAGS = ['--coverage'])
76
77 if env.get('WITH_CLOUD') == True:
78         notification_env.AppendUnique(CPPDEFINES = ['WITH_CLOUD'])
79
80 with_mq = env.get('WITH_MQ')
81 if 'SUB' in with_mq:
82     notification_env.AppendUnique(CPPDEFINES = ['MQ_SUBSCRIBER', 'WITH_MQ'])
83     print "MQ SUB support"
84
85 if 'PUB' in with_mq:
86     notification_env.AppendUnique(CPPDEFINES = ['MQ_PUBLISHER', 'WITH_MQ'])
87     print "MQ PUB support"
88
89 if 'BROKER' in with_mq:
90     notification_env.AppendUnique(CPPDEFINES = ['MQ_BROKER', 'WITH_MQ'])
91     print "MQ Broker support"
92 ######################################################################
93 # Source files and Targets for Consumer
94 ######################################################################
95 notification_jni_consumer_env = notification_env.Clone()
96
97 Import('notificationCommonStaticObjs')
98 Import('notificationCommonSharedObjs')
99
100 notification_consumer_src = [
101         env.Glob('src/*.cpp'),notificationCommonSharedObjs]
102
103 if target_os not in ['ios']:
104         consumersdk = notification_env.SharedLibrary('notification_consumer_wrapper', notification_consumer_src)
105         notification_env.InstallTarget(consumersdk, 'libnotification_consumer_wrapper')
106         notification_env.UserInstallTargetLib(consumersdk, 'libnotification_consumer_wrapper')
107
108 notification_consumer_src = [
109         env.Glob('src/*.cpp'),notificationCommonStaticObjs]
110
111 consumersdk = notification_env.StaticLibrary('notification_consumer_wrapper', notification_consumer_src)
112 notification_env.InstallTarget(consumersdk, 'libnotification_consumer_wrapper')
113 notification_env.UserInstallTargetLib(consumersdk, 'libnotification_consumer_wrapper')
114
115 notification_env.UserInstallTargetHeader("inc/NSProvider.h", 'service/notification', 'NSProvider.h')
116 notification_env.UserInstallTargetHeader("inc/NSConsumerService.h", 'service/notification', 'NSConsumerService.h')
117
118 ######################################################################
119 # Source files and Targets for Consumer Jni
120 ######################################################################
121 if target_os == 'android':
122         Import('notificationJniCommonSharedObjs')
123
124         notification_jni_consumer_env.AppendUnique(CPPPATH = ['../../../../extlibs/boost/boost_1_58_0'])
125         notification_jni_consumer_env.AppendUnique(CPPPATH = ['../../../../android/android_api/base/jni'])
126         notification_jni_consumer_env.AppendUnique(CPPPATH = ['../../android/notification-service/src/main/jni/common'])
127         notification_jni_consumer_env.AppendUnique(CPPPATH = ['../../android/notification-service/src/main/jni/consumer'])
128
129         notification_jni_consumer_env.PrependUnique(LIBS = [
130                 'notification_consumer_wrapper'
131                 ])
132
133         notification_consumer_jni_src = [
134                 env.Glob('../../android/notification-service/src/main/jni/consumer/*.cpp'),
135                 notificationJniCommonSharedObjs]
136
137         consumerJni = notification_jni_consumer_env.SharedLibrary('notification_consumer_jni', notification_consumer_jni_src)
138         notification_jni_consumer_env.InstallTarget(consumerJni, 'libnotification_consumer_jni')
139         notification_jni_consumer_env.UserInstallTargetLib(consumerJni, 'libnotification_consumer_jni')