diff options
author | Peter Åstrand <astrand@cendio.se> | 2014-02-20 08:04:17 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2014-02-20 08:04:17 +0000 |
commit | 889b4896f46787aba1790724608c207666b7d4c8 (patch) | |
tree | 65a6481e144bde79bd09433018ca32abc44c60a5 /CMakeLists.txt | |
parent | 236b019980eb6e3eeb847705c4cbd795afc873b0 (diff) | |
download | tigervnc-889b4896f46787aba1790724608c207666b7d4c8.tar.gz tigervnc-889b4896f46787aba1790724608c207666b7d4c8.zip |
Applied patch from:
Koichiro IWAO <meta@vmeta.jp>
Option for disabling build of vncviewer.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5161 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c78d15c..57b0f032 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -402,9 +402,12 @@ if(ENABLE_NLS) add_subdirectory(po) endif() -add_subdirectory(vncviewer) +option(BUILD_VIEWER "Build TigerVNC viewer" ON) +if(BUILD_VIEWER) + add_subdirectory(vncviewer) + add_subdirectory(media) +endif() -add_subdirectory(media) include(cmake/BuildPackages.cmake) |