[nncc] Show configure progress (#8679)
author박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Tue, 5 Nov 2019 00:57:52 +0000 (09:57 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Tue, 5 Nov 2019 00:57:52 +0000 (09:57 +0900)
* [nncc] Show configure progress

From now on, running nncc configure shows configuration progress for
each individual components.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
* Fix a typo

compiler/CMakeLists.txt

index b009a6e..cb22c25 100644 (file)
@@ -43,7 +43,9 @@ function(add_compiler_directory DIR)
   option(BUILD_COMPILER_${PREFIX} "Build compiler/${dir}" ON)
 
   if(BUILD_COMPILER_${PREFIX})
+    message(STATUS "Configure ${PREFIX}")
     add_subdirectory(${DIR})
+    message(STATUS "Configure ${PREFIX} - Done")
   endif(BUILD_COMPILER_${PREFIX})
 endfunction(add_compiler_directory)