From 1a5709501f94014d41987b956338bb6424b9f90c Mon Sep 17 00:00:00 2001 From: sr Date: Mon, 4 Feb 2013 19:50:31 +0100 Subject: Initial commit --- cmake/FindVNC.cmake | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cmake/FindVNC.cmake (limited to 'cmake/FindVNC.cmake') diff --git a/cmake/FindVNC.cmake b/cmake/FindVNC.cmake new file mode 100644 index 0000000..8b460d3 --- /dev/null +++ b/cmake/FindVNC.cmake @@ -0,0 +1,17 @@ +FIND_PATH(VNC_INCLUDES rfb.h /usr/include/rfb /usr/local/include/rfb) + +FIND_LIBRARY(VNC_LIBRARIES NAMES libvncclient.so PATH /usr/lib /usr/local/lib) + +IF (VNC_INCLUDES AND VNC_LIBRARIES) + SET(VNC_FOUND TRUE) +ENDIF (VNC_INCLUDES AND VNC_LIBRARIES) + +IF (VNC_FOUND) + IF (NOT VNC_FIND_QUIETLY) + MESSAGE(STATUS "Found VNC: ${VNC_LIBRARIES}") + ENDIF (NOT VNC_FIND_QUIETLY) +ELSE (VNC_FOUND) + IF (VNC_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could not find VNC") + ENDIF (VNC_FIND_REQUIRED) +ENDIF (VNC_FOUND) \ No newline at end of file -- cgit v1.2.3-55-g7522