summaryrefslogtreecommitdiffstats
path: root/cmake/FindVNC.cmake
diff options
context:
space:
mode:
authorsr2013-02-04 19:50:31 +0100
committersr2013-02-04 19:50:31 +0100
commit1a5709501f94014d41987b956338bb6424b9f90c (patch)
treed3b93fe8dc406bca56aff147ef5cc4cbf9ed6be0 /cmake/FindVNC.cmake
parentTest (diff)
downloadpvs2-1a5709501f94014d41987b956338bb6424b9f90c.tar.gz
pvs2-1a5709501f94014d41987b956338bb6424b9f90c.tar.xz
pvs2-1a5709501f94014d41987b956338bb6424b9f90c.zip
Initial commit
Diffstat (limited to 'cmake/FindVNC.cmake')
-rw-r--r--cmake/FindVNC.cmake17
1 files changed, 17 insertions, 0 deletions
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