Fix build error with scons-4.4.0 version which is based on python3
[platform/upstream/iotivity.git] / extlibs / yaml / SConscript
1 #******************************************************************
2 #
3 # Copyright 2014 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 import os
22 Import('env')
23
24 yaml_env = env.Clone()
25 src_dir = env.get('SRC_DIR')
26
27 yamlDir = os.path.join(src_dir, 'extlibs','yaml','yaml')
28
29 if not os.path.exists(yamlDir):
30     print('''
31 *********************************** Error: ****************************************
32 * Please download yaml using the following command:                               *
33 *     $ git clone https://github.com/jbeder/yaml-cpp.git extlibs/yaml/yaml *
34 ***********************************************************************************
35 ''')
36     Exit(1)
37
38 ######################################################################
39 # Build flags
40 ######################################################################
41 yaml_env.AppendUnique(CPPPATH = ['yaml/src' , 'yaml/include'])
42 yaml_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-pthread'])
43 yaml_env.AppendUnique(CPPDEFINES = ['LINUX'])
44 yaml_env.AppendUnique(LIBS = ['pthread'])
45
46 yaml_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-fmessage-length=0', '-std=c++0x'])
47
48 ######################################################################
49 # Source files and Targets
50 ######################################################################
51 yaml_src = [env.Glob('yaml/src/*.cpp'), env.Glob('yaml/src/contrib/*.cpp')]
52 yamlsdk = yaml_env.StaticLibrary('YamlParser', yaml_src)
53
54 yaml_env.InstallTarget(yamlsdk, 'libYaml')