Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / compiler / circlechef / CMakeLists.txt
1 nnas_find_package(Protobuf QUIET)
2
3 if(NOT Protobuf_FOUND)
4   message(STATUS "circlechef: SKIP (missing Protobuf)")
5   return()
6 endif(NOT Protobuf_FOUND)
7
8 if(NOT TARGET mio_circle06)
9   message(STATUS "circlechef: SKIP (missing mio-circle06)")
10   return()
11 endif(NOT TARGET mio_circle06)
12
13 # Recipe Parser
14 add_subdirectory(proto)
15 # Log
16 add_subdirectory(log)
17 # Core Library
18 add_subdirectory(core)
19 # Circle Library
20 add_subdirectory(circle)
21 # Tools
22 add_subdirectory(tools)
23 if(ENABLE_TEST)
24   add_subdirectory(tests)
25 endif(ENABLE_TEST)