Commit 9a6177f4 authored by Avijit's avatar Avijit Committed by Robert Kimball

Fixed the build which currently breaks if tools are not enabled but unit test is (#2441)

parent bfb1bd6b
...@@ -53,13 +53,16 @@ set(SRC ...@@ -53,13 +53,16 @@ set(SRC
serialize.cpp serialize.cpp
shape.cpp shape.cpp
tensor.cpp tensor.cpp
tools.cpp
type_prop.cpp type_prop.cpp
util.cpp util.cpp
uuid.cpp uuid.cpp
zero_dim_tensor_elimination.cpp zero_dim_tensor_elimination.cpp
) )
if(NGRAPH_TOOLS_ENABLE)
list(APPEND SRC tools.cpp)
endif()
if(NGRAPH_DISTRIBUTED_ENABLE) if(NGRAPH_DISTRIBUTED_ENABLE)
list(APPEND SRC distributed_setup.cpp) list(APPEND SRC distributed_setup.cpp)
endif() endif()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment