UseCTK.cmake.in 414 B

1234567891011121314151617
  1. #
  2. # This module is provided as CTK_USE_FILE by CTKConfig.cmake. It can
  3. # be INCLUDED in a project to load the needed compiler and linker
  4. # settings to use CTK.
  5. #
  6. IF(NOT CTK_USE_FILE_INCLUDED)
  7. SET(CTK_USE_FILE_INCLUDED 1)
  8. # Add include directories needed to use CTK.
  9. INCLUDE_DIRECTORIES(${CTK_INCLUDE_DIRS})
  10. # Add link directories needed to use CTK.
  11. LINK_DIRECTORIES(${CTK_LIBRARY_DIRS})
  12. ENDIF()