#****************************************************************** # # Copyright 2016 Samsung Electronics All Rights Reserved. # #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ## # Notification Service build script ## import platform Import('env') if env.get('RELEASE'): env.AppendUnique(CCFLAGS = ['-Os']) env.AppendUnique(CPPDEFINES = ['NDEBUG']) else: env.AppendUnique(CCFLAGS = ['-g']) if env.get('LOGGING'): env.AppendUnique(CPPDEFINES = ['TB_LOG']) lib_env = env.Clone() SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env') notification_env = lib_env.Clone() target_os = env.get('TARGET_OS') ###################################################################### # Build flags ###################################################################### notification_env.AppendUnique(CPPPATH = ['include']) notification_env.AppendUnique(CPPPATH = ['src/common']) notification_env.AppendUnique(CPPPATH = ['src/provider']) notification_env.AppendUnique(CPPPATH = ['src/consumer']) notification_env.AppendUnique(CPPPATH = ['../../resource/csdk/stack/include']) notification_env.AppendUnique(CPPPATH = ['../../resource/csdk/connectivity/api']) notification_env.PrependUnique(LIBS = [ 'octbstack', 'oc_logger', 'connectivity_abstraction', 'libcoap' ]) if target_os not in ['windows', 'winrt']: notification_env.AppendUnique(CCFLAGS = ['-O2', '-g', '-Wall', '-fmessage-length=0']) if target_os not in ['darwin', 'ios', 'windows', 'winrt']: notification_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined']) if target_os == 'linux': notification_env.AppendUnique(LIBS = ['pthread']) if target_os == 'android': notification_env.AppendUnique(CCFLAGS = ['-frtti', '-fexceptions']) notification_env.AppendUnique(LIBS = ['gnustl_shared','log']) if not env.get('RELEASE'): notification_env.AppendUnique(LIBS = ['log']) if not env.get('RELEASE'): notification_env.PrependUnique(LIBS = ['gcov']) notification_env.AppendUnique(CCFLAGS = ['--coverage']) if 'CLIENT' in notification_env.get('RD_MODE'): notification_env.AppendUnique(CPPDEFINES = ['RD_CLIENT']) if env.get('WITH_CLOUD') == True: notification_env.AppendUnique(CPPDEFINES = ['WITH_CLOUD']) ###################################################################### # Source files and Targets ###################################################################### notification_provider_src = [ env.Glob('src/provider/*.c'), env.Glob('src/common/*.c')] notification_consumer_src = [ env.Glob('src/consumer/*.c'), env.Glob('src/common/*.c')] providersdk = notification_env.SharedLibrary('notification_provider', notification_provider_src) notification_env.InstallTarget(providersdk, 'libnotification_provider') notification_env.UserInstallTargetLib(providersdk, 'libnotification_provider') consumersdk = notification_env.SharedLibrary('notification_consumer', notification_consumer_src) notification_env.InstallTarget(consumersdk, 'libnotification_consumer') notification_env.UserInstallTargetLib(consumersdk, 'libnotification_consumer') providersdk = notification_env.StaticLibrary('notification_provider', notification_provider_src) notification_env.InstallTarget(providersdk, 'libnotification_provider') notification_env.UserInstallTargetLib(providersdk, 'libnotification_provider') consumersdk = notification_env.StaticLibrary('notification_consumer', notification_consumer_src) notification_env.InstallTarget(consumersdk, 'libnotification_consumer') notification_env.UserInstallTargetLib(consumersdk, 'libnotification_consumer') notification_env.UserInstallTargetHeader('include/NSProviderInterface.h',\ 'service/notification', 'NSProviderInterface.h') notification_env.UserInstallTargetHeader('include/NSConsumerInterface.h',\ 'service/notification', 'NSConsumerInterface.h') # Go to build Unit test if target_os == 'linux': SConscript('unittest/SConscript') # Go to build sample apps SConscript('examples/SConscript') # Go to build jni #if target_os == 'android': # SConscript('android/SConscript') # Go to build c++ wrapper #SConscript('cpp-wrapper/SConscript')