From d0b861c0276208b3fd1b29bf98908e401c7ca17f Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Wed, 6 Jan 2016 14:22:55 -0800 Subject: [PATCH] Disable compilation of IoTivity Services for iOS As this is already disabled for Darwin, it should be disabled for iOS as well. Change-Id: Id1c984bfb3bb32896227721ad620904b92d7f2dd Signed-off-by: Trevor Bramwell Reviewed-on: https://gerrit.iotivity.org/gerrit/4817 Tested-by: jenkins-iotivity Reviewed-by: Uze Choi --- service/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/SConscript b/service/SConscript index 3a35a4a..363f26e 100644 --- a/service/SConscript +++ b/service/SConscript @@ -26,7 +26,7 @@ Import('env') target_os = env.get('TARGET_OS') -if target_os not in ['arduino','darwin']: +if target_os not in ['arduino','darwin', 'ios']: # Build things manager project SConscript('things-manager/SConscript') -- 2.7.4