Ticket #27725: libcudd-notes.diff
File libcudd-notes.diff, 953 bytes (added by ryandesign (Ryan Carsten Schmidt), 14 years ago) |
---|
-
Portfile
54 54 xinstall -m 755 -d ${destroot}${prefix}/lib/cudd 55 55 xinstall -m 644 -W ${worksrcpath} libcudd.dylib libcuddobj.dylib ${destroot}${prefix}/lib/cudd 56 56 # TODO: install documentation ... 57 # Print message on how to use the library58 ui_msg "\n=============\nThe CUDD library for the Mac is compiled dynamically as per Apple's recommendations.\nTo compile against it, use:\n\t'-I${prefix}/cudd -L${prefix}/cudd -lcudd' for the C interface\n\t'-I${prefix}/cudd -L${prefix}/cudd -lcudd -lcuddobj' for the C++ interface.\n============="59 57 } 60 58 59 notes " 60 To compile against the CUDD dynamic library, use\ 61 '-I${prefix}/include/cudd -L${prefix}/lib/cudd -lcudd' for the C interface, or\ 62 '-I${prefix}/include/cudd -L${prefix}/lib/cudd -lcudd -lcuddobj' for the C++ interface. 63 "