This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/cplint/approx/simplecuddLPADs/CMakeLists.txt
Vítor Santos Costa e9debf4d83 MYDDAS Support
2015-11-05 23:45:07 +00:00

32 lines
462 B
CMake

set (SRC
general.c
general.h
ProblogBDD.c
simplecudd.h
simplecudd.c
)
add_executable (LPADbdd
${SRC})
set_target_properties (LPADbdd PROPERTIES
OUTPUT_NAME LPADBDD
)
target_link_libraries(LPADbdd
${CUDD_LIBRARIES_EXPORT}
libYap
)
INCLUDE_DIRECTORIES(
${CUDD_INCLUDE_DIR_EXPORT}
${CMAKE_CURRENT_BINARY_DIR}
)
install(TARGETS LPADbdd
RUNTIME DESTINATION ${bindir}
LIBRARY DESTINATION ${dlls}
)