X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=service%2FSConscript;h=4c7175abf552d1f53ce76ba521443f22674852b6;hb=7f00f942c39b7bc27c7eeecf213a239c3fe4173c;hp=fe7888042184150868634e96cf562e91310b5ec1;hpb=78d5cb6296c178dea7e6e9c10abf3ccd72002c1d;p=platform%2Fupstream%2Fiotivity.git diff --git a/service/SConscript b/service/SConscript old mode 100644 new mode 100755 index fe78880..4c7175a --- a/service/SConscript +++ b/service/SConscript @@ -26,16 +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') - - # Build notification manager project - SConscript('notification-manager/SConscript') +if target_os not in ['arduino','darwin','ios','windows']: + # Build resource-hosting project + # SConscript('resource-hosting/SConscript') # Build resource-encapsulation project SConscript('resource-encapsulation/SConscript') + # Build resource-container project + # SConscript('resource-container/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') + # 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')