From 950b7c31a07170f83102060be91fb934ef03485f Mon Sep 17 00:00:00 2001 From: James Cherry Date: Mon, 23 Mar 2020 14:14:08 -0700 Subject: [PATCH] mv install headers in /opensta, missing headers --- CMakeLists.txt | 4 +++- {util => graph}/VertexId.hh | 0 2 files changed, 3 insertions(+), 1 deletion(-) rename {util => graph}/VertexId.hh (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 23ed88c0..d580306a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -232,6 +232,7 @@ set(STA_HEADERS graph/Graph.hh graph/GraphClass.hh graph/GraphCmp.hh + graph/VertexId.hh liberty/EquivCells.hh liberty/FuncExpr.hh @@ -347,6 +348,7 @@ set(STA_HEADERS search/WorstSlack.hh search/WritePathSpice.hh + util/ArrayTable.hh util/Debug.hh util/DispatchQueue.hh util/DisallowCopyAssign.hh @@ -708,7 +710,7 @@ install(TARGETS sta DESTINATION bin) install(TARGETS OpenSTA DESTINATION lib) # include -install(FILES ${STA_HEADERS} DESTINATION include) +install(FILES ${STA_HEADERS} DESTINATION include/opensta) ################################################################ diff --git a/util/VertexId.hh b/graph/VertexId.hh similarity index 100% rename from util/VertexId.hh rename to graph/VertexId.hh