X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=SConstruct;h=0ebc436441dffdff7a0837c4dc1b7aa2c6c016c9;hb=d5843f59a477a9fbd6ef82f863ad4c808e92ad77;hp=ee3c0f998503dc8547990cbf0b2db053485cfe5e;hpb=fae865412d5a3c3b5e8d1d344e4e56701f289ddd;p=platform%2Fupstream%2Fiotivity.git diff --git a/SConstruct b/SConstruct index ee3c0f9..0ebc436 100644 --- a/SConstruct +++ b/SConstruct @@ -1,27 +1,46 @@ +#****************************************************************** +# +# Copyright 2014 Intel Mobile Communications GmbH 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. +# +#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= + ## # The main build script # ## - import os -# List of targets that only support the IoTivity C SDK. -targets_csdk_only = ['arduino'] - # Load common build config -SConscript('build_common/SConscript', exports = 'targets_csdk_only') +SConscript('build_common/SConscript') Import('env') +if os.environ.get('TERM') != None: + env['ENV']['TERM'] = os.environ['TERM'] + +# Load extra options +SConscript('extra_options.scons') + target_os = env.get('TARGET_OS') if target_os == 'arduino': SConscript('arduino.scons') -else: - # Prepare libraries - env.PrepareLib('cereal') - env.PrepareLib('expat') - env.PrepareLib('boost', 'boost_thread', os.path.join(env.get('SRC_DIR'), 'extlibs', 'boost')) - env.PrepareLib('boost', 'boost_system', os.path.join(env.get('SRC_DIR'), 'extlibs', 'boost')) + +if target_os == 'android': + SConscript('android/android_api/SConscript') # By default, src_dir is current dir, the build_dir is: # ./out//// @@ -35,12 +54,16 @@ else: build_dir = env.get('BUILD_DIR') # Build 'resource' sub-project -SConscript(os.path.join(build_dir, 'resource', 'SConscript'), - exports = 'targets_csdk_only') +SConscript(build_dir + 'resource/SConscript') + +if target_os not in ['arduino','darwin','ios', 'android']: + SConscript(build_dir + 'examples/OICMiddle/SConscript') # Build 'service' sub-project -SConscript(os.path.join(build_dir, 'service', 'SConscript'), - exports = 'targets_csdk_only') +SConscript(build_dir + 'service/SConscript') + +# Build "plugin interface" sub-project +SConscript(build_dir + 'plugins/SConscript') # Append targets information to the help information, to see help info, execute command line: # $ scon [options] -h @@ -49,3 +72,7 @@ env.PrintTargets() # Print bin upload command line (arduino only) if target_os == 'arduino': env.UploadHelp() + +# to install the generated pc file into custome prefix location +env.UserInstallTargetPCFile('iotivity.pc', 'iotivity.pc') +