[Win32] Modify SConscripts to prepare for VS
[platform/upstream/iotivity.git] / service / resource-directory / samples / SConscript
1 #******************************************************************
2 #
3 # Copyright 2015 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 # ResourceDirectory Sample Apps build script
23 ##
24
25 Import('env')
26
27 lib_env = env.Clone()
28 SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env')
29
30 rd_sample_app_env = lib_env.Clone()
31
32 target_os = env.get('TARGET_OS')
33 ######################################################################
34 # Build flags
35 ######################################################################
36 rd_sample_app_env.AppendUnique(CPPPATH = ['../include'])
37
38 if target_os not in ['windows']:
39     rd_sample_app_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-Wextra', '-std=c++0x'])
40 rd_sample_app_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
41 rd_sample_app_env.AppendUnique(RPATH = [env.get('BUILD_DIR')])
42 rd_sample_app_env.PrependUnique(LIBS = ['resource_directory', 'oc', 'octbstack'])
43
44 if env.get('SECURED') == '1':
45     rd_sample_app_env.AppendUnique(LIBS = ['tinydtls'])
46
47 ####################################################################
48 # Source files and Targets
49 ######################################################################
50 rd_server = rd_sample_app_env.Program('rd_server', 'rd_main.c')
51 rd_publishingClient = rd_sample_app_env.Program('rd_publishingClient', 'rd_publishingClient.cpp')
52 rd_queryClient = rd_sample_app_env.Program('rd_queryClient', 'rd_queryClient.cpp')
53
54 Alias("resource_directory", [rd_server, rd_publishingClient])
55
56 env.AppendTarget('resource_directory')