This commit is contained in:
James Cherry 2020-04-07 14:37:52 -07:00
parent ad04d54fbb
commit 6b86ca3b0c
2 changed files with 4 additions and 2 deletions

View File

@ -335,6 +335,7 @@ target_include_directories(sta_swig
PRIVATE
${STA_HOME}
${TCL_INCLUDE_PATH}
)
################################################################
@ -436,12 +437,12 @@ add_library(OpenSTA
target_include_directories(OpenSTA
PUBLIC
include
${CUDD_INCLUDE}
${TCL_INCLUDE_PATH}
PRIVATE
include/sta
${STA_HOME}
${CUDD_INCLUDE}
)
target_compile_features(OpenSTA

View File

@ -19,9 +19,10 @@
#include <stdio.h>
#include <stdarg.h>
#include <string>
#include <tcl.h>
#include "DisallowCopyAssign.hh"
struct Tcl_Interp;
namespace sta {
using std::string;