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/bdd/simplecudd_lfi/CMakeLists.txt

36 lines
529 B
CMake

set (SRC
adterror.c
allocate.c
general.c
iqueue.c
pqueue.c
problogbdd_lfi.c
problogmath.c
simplecudd.c
)
add_executable (Problogbdd-Lfi
${SRC})
set_target_properties (Problogbdd-Lfi PROPERTIES
OUTPUT_NAME simplecudd_lfi
)
target_link_libraries(Problogbdd-Lfi
${CUDD_LIBRARIES}
m
libYap
)
INCLUDE_DIRECTORIES(
${CUDD_INCLUDE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
install(TARGETS Problogbdd-Lfi
RUNTIME DESTINATION ${bindir}
LIBRARY DESTINATION ${dlls}
)