Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / resource / csdk / stack / samples / arduino / SimpleClientServer / ocserver / SConscript
1 #******************************************************************
2 #
3 # Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 #
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 Import('env')
22
23 arduino_simplecs_env = env.Clone()
24 ######################################################################
25 # Build flags
26 ######################################################################
27 arduino_simplecs_env.PrependUnique(CPPPATH = [
28                 '../../../../../logger/include',
29                 '../../../../../stack/include',
30                 '../../../../../../oc_logger/include'
31                 ])
32
33 arduino_simplecs_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
34 arduino_simplecs_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
35
36 arduino_simplecs_env.PrependUnique(LIBS = ['octbstack', 'ocsrm', 'connectivity_abstraction','coap'])
37
38 arduino_simplecs = arduino_simplecs_env.Program('SimpleClientServer', 'ocserver.cpp')
39 env.CreateBin('SimpleClientServer')
40
41 i_arduino_simplecs = arduino_simplecs_env.Install(env.get('BUILD_DIR'), arduino_simplecs)
42
43 #The map file is intermediate file, make sure it's removed when clean build
44 arduino_simplecs_env.Clean(arduino_simplecs, 'SimpleClientServer.map')
45
46 Alias('arduino_simplecs', i_arduino_simplecs)
47 env.AppendTarget('arduino_simplecs')
48
49 if(arduino_simplecs_env['UPLOAD'] == True):
50         from sys import platform as _platform
51         if _platform == "linux" or _platform == "linux2":
52                 arduino_simplecs_env.Upload(env.get('BUILD_DIR') + '/resource/csdk/stack/samples/arduino/SimpleClientServer/ocserver/SimpleClientServer.hex')
53         else:
54                 print 'Please use appropriate install method for your developing machine. Linux is the only supported platform right now.'