[CA] [All] URI support , Optimization , License verification
[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 'sys/inotify.h', this header file doesn't
18         # exist on 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')