diff options
author | DRC <dcommander@users.sourceforge.net> | 2011-06-23 09:30:15 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2011-06-23 09:30:15 +0000 |
commit | 71f21994964bc8b81ed7233a3e505d0c5a5ea980 (patch) | |
tree | 3e5a510da3bcfe0bf85d53506cf439134d5fd711 /CMakeLists.txt | |
parent | 086359c417c646fa5ab070cc50455ba7ff8f7c46 (diff) | |
download | tigervnc-71f21994964bc8b81ed7233a3e505d0c5a5ea980.tar.gz tigervnc-71f21994964bc8b81ed7233a3e505d0c5a5ea980.zip |
We don't use fltk_images or fltk_forms, so don't try to detect those (otherwise, when linking against libfltk.a, the build system will try to link with libfltk_images.a and libfltk_forms.a as well, which can introduce external dependencies that we don't want.)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4521 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d74e601..8fc901e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -186,6 +186,8 @@ endif() if(BUILD_NEW_VNCVIEWER) set(FLTK_SKIP_FLUID TRUE) set(FLTK_SKIP_OPENGL TRUE) + set(FLTK_SKIP_IMAGES TRUE) + set(FLTK_SKIP_FORMS TRUE) find_package(FLTK COMPONENTS REQUIRED) # No proper handling for extra X11 libs that FLTK might need... |