[IOT-1511] Update mbedTLS to use 2.4.0 release tagged version
[platform/upstream/iotivity.git] / service / SConscript
index da5062e..b955025 100755 (executable)
@@ -26,11 +26,11 @@ Import('env')
 
 target_os = env.get('TARGET_OS')
 
-if target_os not in ['arduino','darwin', 'ios']:
+if target_os not in ['arduino','darwin', 'ios', 'windows']:
     # Build things manager project
     SConscript('things-manager/SConscript')
 
-    # Build notification manager project
+    # Build resource-hosting project
     SConscript('resource-hosting/SConscript')
 
     # Build resource-encapsulation project
@@ -43,15 +43,18 @@ if target_os not in ['arduino','darwin', 'ios']:
     if target_os in ['linux']:
         SConscript('scene-manager/SConscript')
 
+    # Build notification-service project
+    if target_os in ['linux','android']:
+        SConscript('notification/SConscript')
+
     # Build simulator module
     if target_os in ['linux'] and env.get('SIMULATOR', False):
         SConscript('simulator/SConscript')
 
-    # Build resource directory project
-    if env.get('WITH_RD') == '1':
-        SConscript('resource-directory/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')
-