X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=resource%2Foc_logger%2Fexamples%2FSConscript;h=a3a4c91c1746df4a536684fd319ba7ad399f2544;hb=935fdb9b67b6c10d007e652e9e2e028fd6ccfe09;hp=de1ab4a582572e194df6367eb0b4468efdadec99;hpb=00b3660e45c56cb3db35dc2596a054f801b5591a;p=platform%2Fupstream%2Fiotivity.git diff --git a/resource/oc_logger/examples/SConscript b/resource/oc_logger/examples/SConscript index de1ab4a..a3a4c91 100644 --- a/resource/oc_logger/examples/SConscript +++ b/resource/oc_logger/examples/SConscript @@ -1,3 +1,23 @@ +#****************************************************************** +# +# Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved. +# +#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= + ## # liboc_logger examples build script ## @@ -18,7 +38,7 @@ examples_env.AppendUnique(LIBS = ['oc_logger', 'stdc++']) target_os = env.get('TARGET_OS') if target_os == 'android': examples_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions']) - examples_env.AppendUnique(LIBS = ['gnustl_static']) + examples_env.AppendUnique(LIBS = ['gnustl_shared']) if target_os not in ['arduino', 'windows', 'winrt']: examples_env.AppendUnique(CFLAGS = Split('-Wall -std=c99 -Werror')) @@ -32,3 +52,4 @@ examples_cpp = examples_env.Program('examples_cpp', 'test_logging.cpp') Alias('liboc_logger_examples', [examples_c, examples_cpp]) examples_env.AppendTarget('liboc_logger_examples') +