replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / service / SConscript
old mode 100644 (file)
new mode 100755 (executable)
index be349be..4c7175a
@@ -1,6 +1,6 @@
 #******************************************************************
 #
-# Copyright 2014 Samsung Electronics All Rights Reserved.
+# Copyright 2015 Samsung Electronics All Rights Reserved.
 #
 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 #
@@ -26,22 +26,32 @@ Import('env')
 
 target_os = env.get('TARGET_OS')
 
-if target_os not in ['arduino','darwin']:
-       # Build things manager project
-       SConscript('things-manager/SConscript')
+if target_os not in ['arduino','darwin','ios','windows']:
+    # Build resource-hosting project
+    # SConscript('resource-hosting/SConscript')
 
-       # Build soft sensor manager project
-       SConscript('soft-sensor-manager/SConscript')
+    # Build resource-encapsulation project
+    SConscript('resource-encapsulation/SConscript')
 
-       # Build protocol plugin project
-       # protocol-plugin use 'inotify', this feature isn't support by MAC OSX
-       if target_os not in ['darwin', 'ios', 'android']:
-               SConscript('protocol-plugin/SConscript')
+    # Build resource-container project
+    # SConscript('resource-container/SConscript')
 
-       # Build notification manager project
-       SConscript('notification-manager/SConscript')
-       
-       # Build resource-encapsulation project
-       if target_os not in ['tizen']:
-               SConscript('resource-encapsulation/SConscript')
+    # Build scene-manager project
+    # if target_os in ['linux']:
+    #    SConscript('scene-manager/SConscript')
 
+    # Build notification-service project
+    if target_os in ['linux','android','tizen']:
+        SConscript('notification/SConscript')
+
+    # Build simulator module
+    # if target_os in ['linux'] and env.get('SIMULATOR', False):
+    #    SConscript('simulator/SConscript')
+
+    # Build coap-http-proxy project
+    # if target_os in ['linux', 'tizen'] and env.get('WITH_PROXY', False):
+    #    SConscript('coap-http-proxy/SConscript')
+
+# Build EasySetup module
+if target_os in ['arduino', 'android','linux','tizen']:
+    SConscript('easy-setup/SConscript')