1234567891011121314151617 |
- #
- # This module is provided as CTK_USE_FILE by CTKConfig.cmake. It can
- # be INCLUDED in a project to load the needed compiler and linker
- # settings to use CTK.
- #
-
- IF(NOT CTK_USE_FILE_INCLUDED)
- SET(CTK_USE_FILE_INCLUDED 1)
-
- # Add include directories needed to use CTK.
- INCLUDE_DIRECTORIES(${CTK_INCLUDE_DIRS})
-
- # Add link directories needed to use CTK.
- LINK_DIRECTORIES(${CTK_LIBRARY_DIRS})
-
- ENDIF()
|