Commit 845099c8 authored by Robert Kimball's avatar Robert Kimball Committed by Scott Cyphers

fix visibility.h not being copied to install folder (#2220)

* fix visibility.h not being copied to install folder

* fix missing header
parent 656b2f72
......@@ -260,7 +260,9 @@ install(TARGETS ngraph DESTINATION ${NGRAPH_INSTALL_LIB}) # libngraph.so
install(DIRECTORY
${CMAKE_CURRENT_SOURCE_DIR}/
DESTINATION "${NGRAPH_INSTALL_INCLUDE}/ngraph"
FILES_MATCHING PATTERN "*.hpp"
FILES_MATCHING
PATTERN "*.hpp"
PATTERN "*.h"
)
set(CPACK_GENERATOR "DEB")
......
......@@ -61,7 +61,6 @@
#include "ngraph/runtime/aligned_buffer.hpp"
#include "ngraph/runtime/backend.hpp"
#include "ngraph/runtime/host_tensor.hpp"
#include "ngraph/runtime/interpreter/int_visibility.h"
#include "ngraph/runtime/interpreter/node_wrapper.hpp"
#include "ngraph/runtime/reference/abs.hpp"
#include "ngraph/runtime/reference/acos.hpp"
......
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