Convert line delimiters to unix style of scon script
authorcoderhyme <jhyo.kim@samsung.com>
Sat, 13 Jun 2015 03:17:45 +0000 (12:17 +0900)
committerUze Choi <uzchoi@samsung.com>
Wed, 17 Jun 2015 08:28:30 +0000 (08:28 +0000)
Change-Id: I507adea856a409360e2af7b7e8d01278349294bb
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/1303
Reviewed-by: Uze Choi <uzchoi@samsung.com>
Tested-by: Uze Choi <uzchoi@samsung.com>
service/basis/common/primitiveResource/SConscript

index 6068501..03eb2ce 100644 (file)
@@ -1,85 +1,85 @@
-#******************************************************************\r
-#\r
-# Copyright 2015 Samsung Electronics All Rights Reserved.\r
-#\r
-#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
-#\r
-# Licensed under the Apache License, Version 2.0 (the "License");\r
-# you may not use this file except in compliance with the License.\r
-# You may obtain a copy of the License at\r
-#\r
-#      http://www.apache.org/licenses/LICENSE-2.0\r
-#\r
-# Unless required by applicable law or agreed to in writing, software\r
-# distributed under the License is distributed on an "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-# See the License for the specific language governing permissions and\r
-# limitations under the License.\r
-#\r
-#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
-\r
-##\r
-# things_manager project build script\r
-##\r
-import os\r
-Import('env')\r
-\r
-# Add third party libraries\r
-lib_env = env.Clone()\r
-SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', exports = 'lib_env')\r
-\r
-src_dir = lib_env.get('SRC_DIR')\r
-\r
-service_common_env = lib_env.Clone()\r
-target_os = env.get('TARGET_OS')\r
-\r
-######################################################################\r
-# Build flags\r
-######################################################################\r
-service_common_env.AppendUnique(CPPPATH = [env.get('SRC_DIR')+'/extlibs', 'include', 'src'])\r
-\r
-if target_os not in ['windows', 'winrt']:\r
-    service_common_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall'])\r
-    if target_os != 'android':\r
-        service_common_env.AppendUnique(CXXFLAGS = ['-pthread'])\r
-\r
-if target_os == 'android':\r
-    service_common_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])\r
-    service_common_env.PrependUnique(LIBS = ['gnustl_shared', 'compatibility', 'log'])\r
-\r
-service_common_env.AppendUnique(LIBS = ['dl'])\r
-\r
-######################################################################\r
-# Source files and Targets\r
-######################################################################\r
-service_common_src = env.Glob('src/*.cpp')\r
-service_common_static = service_common_env.StaticLibrary('ServiceCommon', service_common_src)\r
-service_common_shared = service_common_env.SharedLibrary('ServiceCommon', service_common_src)\r
-\r
-service_common_env.InstallTarget([service_common_static,service_common_shared], 'libServiceCommon')\r
-\r
-######################################################################\r
-# Build Test\r
-######################################################################\r
-service_common_test_env = service_common_env.Clone();\r
-service_common_test_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])\r
-\r
-gtest = File(src_dir + '/extlibs/gtest/gtest-1.7.0/lib/.libs/libgtest.a')\r
-gtest_main = File(src_dir + '/extlibs/gtest/gtest-1.7.0/lib/.libs/libgtest_main.a')\r
-\r
-service_common_test_env.PrependUnique(LIBS = [\r
-    'oc',\r
-    'octbstack',\r
-    'oc_logger',\r
-    'connectivity_abstraction',\r
-    'coap',\r
-    'libServiceCommon',\r
-    gtest,\r
-    gtest_main\r
-    ])\r
-\r
-service_common_test_src = env.Glob('unittests/*.cpp')\r
-\r
-service_common_test = service_common_test_env.Program('service_common_test', service_common_test_src)\r
-Alias("service_common_test", service_common_test)\r
+#******************************************************************
+#
+# Copyright 2015 Samsung Electronics 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.
+#
+#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+##
+# things_manager project build script
+##
+import os
+Import('env')
+
+# Add third party libraries
+lib_env = env.Clone()
+SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', exports = 'lib_env')
+
+src_dir = lib_env.get('SRC_DIR')
+
+service_common_env = lib_env.Clone()
+target_os = env.get('TARGET_OS')
+
+######################################################################
+# Build flags
+######################################################################
+service_common_env.AppendUnique(CPPPATH = [env.get('SRC_DIR')+'/extlibs', 'include', 'src'])
+
+if target_os not in ['windows', 'winrt']:
+    service_common_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall'])
+    if target_os != 'android':
+        service_common_env.AppendUnique(CXXFLAGS = ['-pthread'])
+
+if target_os == 'android':
+    service_common_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
+    service_common_env.PrependUnique(LIBS = ['gnustl_shared', 'compatibility', 'log'])
+
+service_common_env.AppendUnique(LIBS = ['dl'])
+
+######################################################################
+# Source files and Targets
+######################################################################
+service_common_src = env.Glob('src/*.cpp')
+service_common_static = service_common_env.StaticLibrary('ServiceCommon', service_common_src)
+service_common_shared = service_common_env.SharedLibrary('ServiceCommon', service_common_src)
+
+service_common_env.InstallTarget([service_common_static,service_common_shared], 'libServiceCommon')
+
+######################################################################
+# Build Test
+######################################################################
+service_common_test_env = service_common_env.Clone();
+service_common_test_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
+
+gtest = File(src_dir + '/extlibs/gtest/gtest-1.7.0/lib/.libs/libgtest.a')
+gtest_main = File(src_dir + '/extlibs/gtest/gtest-1.7.0/lib/.libs/libgtest_main.a')
+
+service_common_test_env.PrependUnique(LIBS = [
+    'oc',
+    'octbstack',
+    'oc_logger',
+    'connectivity_abstraction',
+    'coap',
+    'libServiceCommon',
+    gtest,
+    gtest_main
+    ])
+
+service_common_test_src = env.Glob('unittests/*.cpp')
+
+service_common_test = service_common_test_env.Program('service_common_test', service_common_test_src)
+Alias("service_common_test", service_common_test)
 env.AppendTarget('service_common_test')
\ No newline at end of file