Merge remote-tracking branch 'origin/master' into notification-service
[platform/upstream/iotivity.git] / service / notification / cpp-wrapper / examples / linux / 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 build script
23 ##
24
25 Import('env')
26
27 lib_env = env.Clone()
28 SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env')
29 notification_sample_env = lib_env.Clone()
30
31 target_os = env.get('TARGET_OS')
32 ######################################################################
33 # Build flags
34 ######################################################################
35 notification_sample_env.AppendUnique(CPPPATH = ['../../../include'])
36 notification_sample_env.AppendUnique(CPPPATH = ['../../provider/inc'])
37 notification_sample_env.AppendUnique(CPPPATH = ['../../consumer/inc'])
38 notification_sample_env.AppendUnique(CPPPATH = ['../../common'])
39 notification_sample_env.AppendUnique(CPPPATH = ['../../../../../resource/csdk/stack/include'])
40 notification_sample_env.AppendUnique(CPPPATH = ['../../../../../resource/csdk/connectivity/api'])
41 notification_sample_env.AppendUnique(CPPPATH = ['../../../src/common'])
42
43 notification_sample_env.PrependUnique(LIBS = [
44         'liboctbstack',
45         'oc_logger',
46         'connectivity_abstraction',
47         'libcoap'
48         ])
49
50 notification_sample_env.AppendUnique(CXXFLAGS = ['-std=c++0x','-frtti'])
51 if target_os not in ['windows', 'winrt']:
52         notification_sample_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-fmessage-length=0'])
53
54 if target_os not in ['darwin', 'ios', 'windows', 'winrt']:
55         notification_sample_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
56
57 if target_os == 'linux':
58         notification_sample_env.AppendUnique(LIBS = ['pthread'])
59
60 if target_os == 'android':
61         notification_sample_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
62         notification_sample_env.AppendUnique(LIBS = ['gnustl_shared','log'])
63
64 if not env.get('RELEASE'):
65     notification_sample_env.PrependUnique(LIBS = ['gcov'])
66     notification_sample_env.AppendUnique(CCFLAGS = ['--coverage'])
67
68 if env.get('WITH_CLOUD') == True:
69         notification_sample_env.AppendUnique(CPPDEFINES = ['WITH_CLOUD'])
70
71 ####################################################################
72 # Source files and Targets
73 ######################################################################
74 notification_sample_provider_env = notification_sample_env.Clone()
75
76 notification_sample_provider_env.AppendUnique(LIBS = 'libnotification_provider_wrapper')
77 notification_sample_provider_env.AppendUnique(LIBS = 'libnotification_provider')
78 notificationproviderwrapper = notification_sample_provider_env.Program('notificationproviderwrapper', 'notificationserviceprovider.cpp')
79 i_notificationprovider = notification_sample_provider_env.Install(env.get('BUILD_DIR'), notificationproviderwrapper)
80
81 notification_sample_consumer_env = notification_sample_env.Clone()
82 notification_sample_consumer_env.AppendUnique(LIBS = 'libnotification_consumer_wrapper')
83 notification_sample_consumer_env.AppendUnique(LIBS = 'libnotification_consumer')
84 notificationconsumerwrapper = notification_sample_consumer_env.Program('notificationconsumerwrapper', 'notificationserviceconsumer.cpp')
85 i_notificationconsumer = notification_sample_consumer_env.Install(env.get('BUILD_DIR'), notificationconsumerwrapper)