Tidy cmake, apply indentation (#1989)
author박세희/동작제어Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Wed, 18 Jul 2018 01:00:27 +0000 (10:00 +0900)
committer이춘석/동작제어Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>
Wed, 18 Jul 2018 01:00:27 +0000 (10:00 +0900)
This will add indentation to cmake file that was left some time ago

Signed-off-by: SaeHie Park <saehie.park@samsung.com>
CMakeLists.txt

index 014500f..87c2eb0 100644 (file)
@@ -186,16 +186,14 @@ if("${TARGET_OS}" STREQUAL "android")
 
 else("${TARGET_OS}" STREQUAL "android") # General case (non-android build)
 
-# TODO Fix indentation
-
-if (NOT OBS_BUILD)
-  add_subdirectory(externals)
-endif()
-add_subdirectory(libs)
-add_subdirectory(tools)
-add_subdirectory(runtimes)
+  if (NOT OBS_BUILD)
+    add_subdirectory(externals)
+  endif()
+  add_subdirectory(libs)
+  add_subdirectory(tools)
+  add_subdirectory(runtimes)
 
-add_subdirectory(benchmark)
-add_subdirectory(contrib)
+  add_subdirectory(benchmark)
+  add_subdirectory(contrib)
 
 endif("${TARGET_OS}" STREQUAL "android")