swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: fa869255a017ea2aec7b763dcf937f0ca6642dbd authored by johannes hanika on 19 July 2011, 09:36:57 UTC
sorry, screwed up opencl compile before. good now.
Tip revision: fa86925
FindVTE.cmake
include(Prebuilt)

if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
  include(FindPkgConfig)
  pkg_check_modules(VTE vte)
endif (CMAKE_SYSTEM_NAME STREQUAL "Linux")

if (VTE_FOUND)
  set(VTE ON CACHE BOOL "Build with VTE support.")
endif (VTE_FOUND)

# if (VTE)
#   add_definitions(-DVTE)
# endif (VTE)
back to top