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 PRIVATE
${STA_HOME} ${STA_HOME}
${TCL_INCLUDE_PATH}
) )
################################################################ ################################################################
@ -436,12 +437,12 @@ add_library(OpenSTA
target_include_directories(OpenSTA target_include_directories(OpenSTA
PUBLIC PUBLIC
include include
${CUDD_INCLUDE}
${TCL_INCLUDE_PATH} ${TCL_INCLUDE_PATH}
PRIVATE PRIVATE
include/sta include/sta
${STA_HOME} ${STA_HOME}
${CUDD_INCLUDE}
) )
target_compile_features(OpenSTA target_compile_features(OpenSTA

View File

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