[Pure CL runtime] Fix CMakeLists.txt indentation (#1424)
author박종현/동작제어Lab(SR)/Senior Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 30 May 2018 05:36:53 +0000 (14:36 +0900)
committer이춘석/동작제어Lab(SR)/Senior Engineer/삼성전자 <chunseok.lee@samsung.com>
Wed, 30 May 2018 05:36:53 +0000 (14:36 +0900)
This commit fixes CMakeLists.txt indentation.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
runtimes/pure_arm_compute/CMakeLists.txt

index a6d03b2..35e7a51 100644 (file)
@@ -4,18 +4,16 @@ endif(NOT BUILD_PURE_ARM_COMPUTE)
 
 nnfw_find_package(ARMCompute REQUIRED)
 
-# NOTE This strange indentation is introduced to minimize code diffs
-# TODO Revise indentation
-  file(GLOB_RECURSE SOURCES "src/*.cc")
+file(GLOB_RECURSE SOURCES "src/*.cc")
 
-  add_library(nnapi_pure_arm_compute SHARED ${SOURCES})
-  target_include_directories(nnapi_pure_arm_compute PUBLIC ${NNFW_INCLUDE_DIR})
-  target_include_directories(nnapi_pure_arm_compute PUBLIC src)
-  target_link_libraries(nnapi_pure_arm_compute arm_compute)
-  target_link_libraries(nnapi_pure_arm_compute nnfw_util)
-  set_target_properties(nnapi_pure_arm_compute PROPERTIES OUTPUT_NAME neuralnetworks)
-  install(TARGETS nnapi_pure_arm_compute DESTINATION lib/pureacl RENAME neuralnetworks)
+add_library(nnapi_pure_arm_compute SHARED ${SOURCES})
+target_include_directories(nnapi_pure_arm_compute PUBLIC ${NNFW_INCLUDE_DIR})
+target_include_directories(nnapi_pure_arm_compute PUBLIC src)
+target_link_libraries(nnapi_pure_arm_compute arm_compute)
+target_link_libraries(nnapi_pure_arm_compute nnfw_util)
+set_target_properties(nnapi_pure_arm_compute PROPERTIES OUTPUT_NAME neuralnetworks)
+install(TARGETS nnapi_pure_arm_compute DESTINATION lib/pureacl RENAME neuralnetworks)
 
-  # To prevent undefined references
-  add_executable(pure_arm_compute_symbolcheck symbolcheck.cpp)
-  target_link_libraries(pure_arm_compute_symbolcheck nnapi_pure_arm_compute)
+# To prevent undefined references
+add_executable(pure_arm_compute_symbolcheck symbolcheck.cpp)
+target_link_libraries(pure_arm_compute_symbolcheck nnapi_pure_arm_compute)