1 #******************************************************************
3 # Copyright 2016 Samsung Electronics All Rights Reserved.
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 # http://www.apache.org/licenses/LICENSE-2.0
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.
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
22 # Notification Service c++ wrapper build script
28 if env.get('RELEASE'):
29 env.AppendUnique(CCFLAGS = ['-Os'])
30 env.AppendUnique(CPPDEFINES = ['NDEBUG'])
32 env.AppendUnique(CCFLAGS = ['-g'])
34 if env.get('LOGGING'):
35 env.AppendUnique(CPPDEFINES = ['TB_LOG'])
38 SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env')
39 notification_env = lib_env.Clone()
41 target_os = env.get('TARGET_OS')
43 ######################################################################
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'])
52 notification_env.PrependUnique(LIBS = [
54 'libnotification_consumer'
56 notification_env.AppendUnique(CXXFLAGS = ['-O2', '-Wall', '-fmessage-length=0', '-std=c++0x','-frtti'])
57 if target_os == 'android':
58 notification_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
59 notification_env.PrependUnique(LIBS = ['gnustl_shared', 'log'])
61 ######################################################################
62 # Source files and Targets
63 ######################################################################
65 notification_consumer_src = [
66 env.Glob('src/*.cpp'),env.Glob('../common/*.cpp')]
68 consumersdk = notification_env.SharedLibrary('notification_consumer_wrapper', notification_consumer_src)
69 notification_env.InstallTarget(consumersdk, 'libnotification_consumer_wrapper')
70 notification_env.UserInstallTargetLib(consumersdk, 'libnotification_consumer_wrapper')