summaryrefslogtreecommitdiffstats
path: root/vncviewer
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2011-07-28 08:38:59 +0000
committerDRC <dcommander@users.sourceforge.net>2011-07-28 08:38:59 +0000
commit2ff39b848160c904dcbf5326912f8242e084b90a (patch)
tree62eed67b9818e47d71254b56311c2d1af203d19d /vncviewer
parent4e326a0b8cf816b3205171e0bbce5d6d4973d90e (diff)
downloadtigervnc-2ff39b848160c904dcbf5326912f8242e084b90a.tar.gz
tigervnc-2ff39b848160c904dcbf5326912f8242e084b90a.zip
Include a stripped-down version of FLTK in tree and add a USE_INCLUDED_FLTK option to build against it.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4603 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer')
-rw-r--r--vncviewer/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/vncviewer/CMakeLists.txt b/vncviewer/CMakeLists.txt
index 8be757ee..7ba029f1 100644
--- a/vncviewer/CMakeLists.txt
+++ b/vncviewer/CMakeLists.txt
@@ -35,6 +35,9 @@ else()
add_executable(vncviewer ${VNCVIEWER_SOURCES})
endif()
+if(USE_INCLUDED_FLTK)
+ target_link_libraries(vncviewer fltk_static)
+endif()
target_link_libraries(vncviewer rfb network rdr os Xregion ${FLTK_LIBRARIES} ${GETTEXT_LIBRARIES})
install(TARGETS vncviewer DESTINATION bin)