Home | History | Annotate | Line # | Download | only in Modules
      1  1.1  christos #
      2  1.1  christos # Try to find the Riverbed TurboCap library.
      3  1.1  christos #
      4  1.1  christos 
      5  1.1  christos # Try to find the header
      6  1.1  christos find_path(TC_INCLUDE_DIR TcApi.h)
      7  1.1  christos 
      8  1.1  christos # Try to find the library
      9  1.1  christos find_library(TC_LIBRARY TcApi)
     10  1.1  christos 
     11  1.1  christos include(FindPackageHandleStandardArgs)
     12  1.1  christos find_package_handle_standard_args(TC
     13  1.1  christos   DEFAULT_MSG
     14  1.1  christos   TC_INCLUDE_DIR
     15  1.1  christos   TC_LIBRARY
     16  1.1  christos )
     17  1.1  christos 
     18  1.1  christos mark_as_advanced(
     19  1.1  christos   TC_INCLUDE_DIR
     20  1.1  christos   TC_LIBRARY
     21  1.1  christos )
     22  1.1  christos 
     23  1.1  christos set(TC_INCLUDE_DIRS ${TC_INCLUDE_DIR})
     24  1.1  christos set(TC_LIBRARIES ${TC_LIBRARY})
     25