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

33 lines
486 B
CMake
Raw Normal View History

2015-11-05 23:45:07 +00:00
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
2017-11-15 12:18:19 +00:00
m
2016-04-14 23:24:07 +01:00
${CUDD_LIBRARIES}
2015-11-05 23:45:07 +00:00
libYap
)
INCLUDE_DIRECTORIES(
2016-04-14 23:24:07 +01:00
${CUDD_INCLUDE_DIR}
2015-11-05 23:45:07 +00:00
${CMAKE_CURRENT_BINARY_DIR}
)
install(TARGETS LPADbdd
2017-12-05 15:14:57 +00:00
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
2018-11-16 14:02:56 +00:00
LIBRARY DESTINATION ${YAP_INSTALL_LIBDIR}
2015-11-05 23:45:07 +00:00
)