#****************************************************************** # # Copyright 2014 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. # #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ## # things_manager project build script ## Import('env') # Add third party libraries lib_env = env.Clone() SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', exports = 'lib_env') things_manager_env = lib_env.Clone() target_os = env.get('TARGET_OS') ###################################################################### # Build flags ###################################################################### things_manager_env.AppendUnique(CPPPATH = ['../../extlibs/timer', 'sdk/inc', 'sdk/src']) if target_os not in ['windows', 'winrt']: things_manager_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall']) if target_os != 'android': things_manager_env.AppendUnique(CXXFLAGS = ['-pthread']) if target_os == 'android': things_manager_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions']) ###################################################################### # Source files and Targets ###################################################################### # tgm_src = env.Glob(['sdk/src/*.cpp', '../../extlibs/timer/timer.c']) tgm_src = [ 'sdk/src/GroupManager.cpp', 'sdk/src/ActionSet.cpp', 'sdk/src/GroupSynchronization.cpp', 'sdk/src/ThingsConfiguration.cpp', 'sdk/src/ThingsDiagnostics.cpp', 'sdk/src/ThingsManager.cpp'] tgmsdk = things_manager_env.StaticLibrary('TGMSDKLibrary', tgm_src) things_manager_env.InstallTarget(tgmsdk, 'libTGMSDK') #Go to build sample apps SConscript('sampleapp/SConscript')