Update SConscript in service
authorhunje.yeon <hunje.yeon@samsung.com>
Mon, 21 Sep 2015 14:24:52 +0000 (23:24 +0900)
committerMadan Lanka <lanka.madan@samsung.com>
Tue, 22 Sep 2015 00:44:20 +0000 (00:44 +0000)
Cleans SConscript in service folder by removing soft-sensor and
protocol plugin SConscript

Signed-off-by: hunje.yeon <hunje.yeon@samsung.com>
Change-Id: Iccc880151f6b77a43f6f956eb6a7a40da25547ee
Reviewed-on: https://gerrit.iotivity.org/gerrit/2869
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Madan Lanka <lanka.madan@samsung.com>
service/SConscript

index d657152..fe78880 100644 (file)
@@ -1,6 +1,6 @@
 #******************************************************************
 #
-# Copyright 2014 Samsung Electronics All Rights Reserved.
+# Copyright 2015 Samsung Electronics All Rights Reserved.
 #
 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 #
@@ -27,27 +27,15 @@ Import('env')
 target_os = env.get('TARGET_OS')
 
 if target_os not in ['arduino','darwin']:
-       # Build things manager project
-       SConscript('things-manager/SConscript')
+    # Build things manager project
+    SConscript('things-manager/SConscript')
 
-       # Build soft sensor manager project
-       SConscript('soft-sensor-manager/SConscript')
-
-       # Build protocol plugin project
-       # protocol-plugin use 'inotify', this feature isn't support by MAC OSX
-       if target_os not in ['darwin', 'ios']:
-               SConscript('protocol-plugin/SConscript')
-
-       # Build notification manager project
-       SConscript('notification-manager/SConscript')
-       
-       # Build resource-encapsulation project
-       SConscript('resource-encapsulation/SConscript')
-#else:
-#      SConscript('notification-manager/SampleApp/arduino/SConscript')
-
-       # Build simulator module
-       if target_os in ['linux'] and env.get('SIMULATOR', False):
-               SConscript('simulator/SConscript')
+    # Build notification manager project
+    SConscript('notification-manager/SConscript')
 
+    # Build resource-encapsulation project
+    SConscript('resource-encapsulation/SConscript')
 
+    # Build simulator module
+    if target_os in ['linux'] and env.get('SIMULATOR', False):
+        SConscript('simulator/SConscript')