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