Advertisement
Guest User

Untitled

a guest
May 16th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. prefix=@CMAKE_INSTALL_PREFIX@
  2. exec_prefix=${prefix} # defining another variable in terms of the first
  3. libdir=${exec_prefix}/lib
  4. includedir=${prefix}/include
  5.  
  6. Name: Orocos-RTT # human-readable name
  7. Description: Open Robot Control Software: Real-Time Tookit # human-readable description
  8. Version: @RTT_VERSION@
  9. Libs: -L${libdir} -lorocos-rtt-@OROCOS_TARGET@ @RTT_USER_LINK_LIBS@ @RTT_USER_LDFLAGS@ # If some RTT headers include inline calls to other libraries, we need to specify these here too.
  10. Libs.private: @RTT_LINKFLAGS@
  11. Cflags: -I${includedir} @RTT_DEFINES@ @RTT_CFLAGS@ @RTT_USER_CFLAGS@
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement