Modifying version number for building on tizen 3.0
[platform/upstream/iotivity.git] / service / SConscript
1 ##
2 # 'service' sub-project main build script
3 #
4 ##
5 Import('env')
6
7 target_os = env.get('TARGET_OS')
8
9 if target_os != 'arduino':
10         # Build things manager project
11         SConscript('things-manager/SConscript')
12
13         # Build soft sensor manager project
14         SConscript('soft-sensor-manager/SConscript')
15
16         # Build protocol plugin project
17         # protocol-plugin use 'inotify', this feature isn't support by MAC OSX
18         if target_os not in ['darwin', 'ios', 'android']:
19                 SConscript('protocol-plugin/SConscript')
20
21         # Build notification manager project
22 #       SConscript('notification-manager/SConscript')
23 #else:
24 #       SConscript('notification-manager/SampleApp/arduino/SConscript')