Fix for android build failure.
[platform/upstream/iotivity.git] / SConstruct
index 92eac38..3a69fe5 100644 (file)
@@ -1,18 +1,47 @@
+#******************************************************************
+#
+# 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
 
 # Load common build config
 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')
-Import('env')
 
 target_os = env.get('TARGET_OS')
 if target_os == 'arduino':
        SConscript('arduino.scons')
+
+if target_os == 'android':
+       SConscript('android/android_api/SConscript')
+
 # By default, src_dir is current dir, the build_dir is:
 #     ./out/<target_os>/<target_arch>/<release or debug>/
 #
@@ -27,8 +56,22 @@ build_dir = env.get('BUILD_DIR')
 # Build 'resource' sub-project
 SConscript(build_dir + 'resource/SConscript')
 
+if target_os not in ['arduino','darwin','ios', 'android', 'msys_nt', 'windows', 'tizenrt']:
+       SConscript(build_dir + 'examples/OICMiddle/SConscript')
+
 # Build 'service' sub-project
-SConscript(build_dir + 'service/SConscript')
+if target_os not in ['tizenrt']:
+       SConscript(build_dir + 'service/SConscript')
+
+# Build "cloud" sub-project
+SConscript(build_dir + 'cloud/SConscript')
+
+# Build "plugin interface" sub-project
+if target_os not in ['tizenrt']:
+       SConscript(build_dir + 'plugins/SConscript')
+
+if target_os == 'tizenrt':
+       SConscript('../apps' + '/SConscript')
 
 # Append targets information to the help information, to see help info, execute command line:
 #     $ scon [options] -h
@@ -37,3 +80,7 @@ env.PrintTargets()
 # Print bin upload command line (arduino only)
 if target_os == 'arduino':
        env.UploadHelp()
+
+# to install the generated pc file into custom prefix location
+env.UserInstallTargetPCFile('iotivity.pc', 'iotivity.pc')
+