packaging: Add dependency gtest
[contrib/iotivity.git] / SConstruct
index 2ea9acb..0ebc436 100644 (file)
 # 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>/
 #
@@ -51,9 +60,11 @@ if target_os not in ['arduino','darwin','ios', 'android']:
        SConscript(build_dir + 'examples/OICMiddle/SConscript')
 
 # Build 'service' sub-project
-# if target_os != 'android':
 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
 env.PrintTargets()
@@ -62,3 +73,6 @@ env.PrintTargets()
 if target_os == 'arduino':
        env.UploadHelp()
 
+# to install the generated pc file into custome prefix location
+env.UserInstallTargetPCFile('iotivity.pc', 'iotivity.pc')
+