Merge "Merge branch 'simulator'."
[platform/upstream/iotivity.git] / cloud / samples / client / SConscript
1 #******************************************************************
2 #
3 # Copyright 2016 Samsung Electronics 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 ##
22 # IoTivity Cloud project sample client build script
23 ##
24
25 Import('env')
26
27 lib_env = env.Clone()
28
29 cc_sample_app_env = lib_env.Clone()
30
31 ######################################################################
32 # Build flags
33 ######################################################################
34 cc_sample_app_env.AppendUnique(CPPPATH = [
35                 '../../../resource/include/',
36                 '../../../resource/csdk/stack/include',
37                 '../../../resource/c_common/ocrandom/include',
38                 '../../../resource/csdk/logger/include',
39                 '../../../resource/oc_logger/include'
40                 ])
41
42 cc_sample_app_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-Wextra', '-std=c++0x', '-pthread'])
43 cc_sample_app_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
44 cc_sample_app_env.AppendUnique(RPATH = [env.get('BUILD_DIR')])
45 cc_sample_app_env.PrependUnique(LIBS = ['oc', 'octbstack'])
46
47 ######################################################################
48 # Source files and Targets
49 ######################################################################
50 cc_sample_src = [
51         'cloud_connector.c',
52         'sample_device.cpp',
53          ]
54
55 cc_client = cc_sample_app_env.Program('cloud_device', cc_sample_src)
56 cc_sample_app_env.InstallTarget(cc_client, 'cloud_device')