Initial commit of new FLTK based vncviewer. Most of the code comes from the
current Unix vncviewer.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4345 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/vncviewer/CMakeLists.txt b/vncviewer/CMakeLists.txt
new file mode 100644
index 0000000..742ba13
--- /dev/null
+++ b/vncviewer/CMakeLists.txt
@@ -0,0 +1,12 @@
+include_directories(${FLTK_INCLUDE_DIR})
+
+include_directories(${CMAKE_SOURCE_DIR}/common)
+
+add_executable(vncviewer
+ CConn.cxx
+ DesktopWindow.cxx
+ UserDialog.cxx
+ parameters.cxx
+ vncviewer.cxx)
+
+target_link_libraries(vncviewer rfb network rdr os Xregion ${FLTK_LIBRARIES})