Enable compilation and functionality on darwin(osx)
[platform/upstream/iotivity.git] / resource / csdk / connectivity / lib / libcoap-4.1.1 / SConscript
1 ##
2 # libcoap (share library) build script
3 ##
4
5 Import('env')
6
7 libcoap_env = env.Clone()
8
9 target_os = env.get('TARGET_OS')
10
11 # As in the source code(C) includes arduino Time library head file(C++)
12 # It requires compile the .c with g++
13 if target_os == 'arduino':
14         libcoap_env.Replace(CFLAGS = env.get('CXXFLAGS'))
15
16 ######################################################################
17 # Build flags
18 ######################################################################
19         libcoap_env.PrependUnique(CPPPATH = [
20                 './',
21                 env.get('ARDUINO_HOME')+'/',
22                 env.get('ARDUINO_HOME')+'/hardware/arduino/avr/cores/arduino',
23                 env.get('ARDUINO_HOME')+'/hardware/tools/avr/avr/include/',
24                 env.get('ARDUINO_HOME')+'/hardware/arduino/avr/variants/mega',
25                 env.get('ARDUINO_HOME')+'/libraries/Time/Time',
26                 env.get('ARDUINO_HOME')+'/libraries/TimedAction',
27                 env.get('ARDUINO_HOME')+'/hardware/arduino/avr/libraries/SPI',
28                 env.get('ARDUINO_HOME')+'/libraries/Ethernet/src/utility',
29                 ])
30
31 if target_os not in ['arduino', 'windows', 'winrt']:
32         libcoap_env.AppendUnique(CPPDEFINES = ['WITH_POSIX'])
33         libcoap_env.AppendUnique(CFLAGS = ['-std=gnu99','-fPIC'])
34
35 if target_os not in ['windows', 'winrt']:
36         libcoap_env.AppendUnique(CFLAGS = ['-Wall', '-ffunction-sections',
37                         '-fdata-sections', '-fno-exceptions'])
38
39 if target_os == 'android':
40         libcoap_env.AppendUnique(LIBS = ['log'])
41
42 if target_os == 'arduino':
43         libcoap_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
44
45 if target_os in ['darwin', 'ios']:
46         libcoap_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
47
48 if env.get('LOGGING'):
49         libcoap_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
50
51 ######################################################################
52 # Source files and Target(s)
53 ######################################################################
54 libcoap_src = [
55         'pdu.c',
56         'net.c',
57         'debug.c',
58         'encode.c',
59         'uri.c',
60         'coap_list.c',
61         'resource.c',
62         'hashkey.c',
63         'str.c',
64         'option.c',
65         'async.c',
66         'subscribe.c',
67         'block.c'
68         ]
69
70 libcoap = libcoap_env.StaticLibrary('libcoap', libcoap_src, OBJPREFIX='libcoap_')
71
72 libcoap_env.InstallTarget(libcoap, 'libcoap')