Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / soft-sensor-manager / SampleApp / SConscript
1 ##
2 # sampleapp build script
3 ##
4
5 Import('env')
6
7 # Add third party libraries
8 lib_env = env.Clone()
9 SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env')
10 sample_env = lib_env.Clone()
11 target_os = env.get('TARGET_OS')
12
13 ######################################################################
14 # Build flags
15 ######################################################################
16
17 ######################################################################
18 # Source files and Targets
19 ######################################################################
20 if target_os == 'linux' :
21         # Build linux sample app
22         SConscript('linux/SSMTesterApp/SConscript')
23         SConscript('linux/THSensorApp/SConscript')
24         SConscript('linux/THSensorApp1/SConscript')
25         SConscript('linux/HeightSensorApp/SConscript')
26         SConscript('linux/WeightSensorApp/SConscript')
27
28
29