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/CMakeLists.txt
Vitor Santos Costa 645b2c7d93 boot
2017-12-05 15:14:57 +00:00

32 lines
486 B
CMake

set (SRC
general.c
problogbdd.c
problogmath.c
simplecudd.c
)
add_executable (Problogbdd
${SRC})
set_target_properties (Problogbdd PROPERTIES
OUTPUT_NAME simplecudd
)
target_link_libraries(Problogbdd
${CUDD_LIBRARIES}
m
libYap
)
INCLUDE_DIRECTORIES(
${CUDD_INCLUDE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
install(TARGETS Problogbdd
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR}
)