forked from parallaxsw/OpenSTA
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'parallaxsw:master' into main
- Loading branch information
Showing
13 changed files
with
273 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
################################################################ | ||
# | ||
# Locate CUDD bdd package. | ||
# | ||
################################################################ | ||
find_library(CUDD_LIB | ||
NAME cudd | ||
PATHS ${CUDD_DIR} | ||
PATH_SUFFIXES lib lib/cudd cudd/.libs | ||
) | ||
if (CUDD_LIB) | ||
message(STATUS "CUDD library: ${CUDD_LIB}") | ||
get_filename_component(CUDD_LIB_DIR "${CUDD_LIB}" PATH) | ||
get_filename_component(CUDD_LIB_PARENT1 "${CUDD_LIB_DIR}" PATH) | ||
find_file(CUDD_HEADER cudd.h | ||
PATHS ${CUDD_LIB_PARENT1} ${CUDD_LIB_PARENT1}/include ${CUDD_LIB_PARENT1}/include/cudd) | ||
if (CUDD_HEADER) | ||
get_filename_component(CUDD_INCLUDE "${CUDD_HEADER}" PATH) | ||
message(STATUS "CUDD header: ${CUDD_HEADER}") | ||
else() | ||
message(STATUS "CUDD header: not found") | ||
endif() | ||
else() | ||
message(STATUS "CUDD library: not found") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.