aboutsummaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2011-06-25 03:02:10 +0000
committerDRC <dcommander@users.sourceforge.net>2011-06-25 03:02:10 +0000
commite66060d1c3d2c67f096c1c34533f351fa7505e70 (patch)
tree4b227acc1c1a4b1a399b0b9ae57a10e64525c212 /unix
parente574444623c4ebc30bff3ac8ea22defb0f18b47e (diff)
downloadtigervnc-e66060d1c3d2c67f096c1c34533f351fa7505e70.tar.gz
tigervnc-e66060d1c3d2c67f096c1c34533f351fa7505e70.zip
Install man pages during 'make install' on Unix systems
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4552 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix')
-rw-r--r--unix/CMakeLists.txt3
-rw-r--r--unix/vncconfig/CMakeLists.txt3
-rw-r--r--unix/vncpasswd/CMakeLists.txt3
3 files changed, 9 insertions, 0 deletions
diff --git a/unix/CMakeLists.txt b/unix/CMakeLists.txt
index 599f26f9..36fe3396 100644
--- a/unix/CMakeLists.txt
+++ b/unix/CMakeLists.txt
@@ -6,3 +6,6 @@ add_subdirectory(vncpasswd)
if(NOT BUILD_NEW_VNCVIEWER)
add_subdirectory(vncviewer)
endif()
+
+install(PROGRAMS vncserver DESTINATION bin)
+install(FILES vncserver.man DESTINATION man/man1)
diff --git a/unix/vncconfig/CMakeLists.txt b/unix/vncconfig/CMakeLists.txt
index 55704130..9adadaa2 100644
--- a/unix/vncconfig/CMakeLists.txt
+++ b/unix/vncconfig/CMakeLists.txt
@@ -10,3 +10,6 @@ add_executable(vncconfig
QueryConnectDialog.cxx)
target_link_libraries(vncconfig tx rfb network rdr ${X11_LIBRARIES})
+
+install(TARGETS vncconfig DESTINATION bin)
+install(FILES vncconfig.man DESTINATION man/man1)
diff --git a/unix/vncpasswd/CMakeLists.txt b/unix/vncpasswd/CMakeLists.txt
index 1125df25..f31c936a 100644
--- a/unix/vncpasswd/CMakeLists.txt
+++ b/unix/vncpasswd/CMakeLists.txt
@@ -4,3 +4,6 @@ add_executable(vncpasswd
vncpasswd.cxx)
target_link_libraries(vncpasswd tx rfb rdr os)
+
+install(TARGETS vncpasswd DESTINATION bin)
+install(FILES vncpasswd.man DESTINATION man/man1)