diff options
author | Pierre Ossman <ossman@cendio.se> | 2014-07-04 11:34:02 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2014-07-04 11:34:02 +0200 |
commit | f3c2026d5be5c64655386bb1d1592eb250830ea1 (patch) | |
tree | 938421940dcd7eb08ca0b52b978e1495125b40e9 | |
parent | 1338c0dc2d79235cd0380a1f11a7558548929a82 (diff) | |
download | tigervnc-f3c2026d5be5c64655386bb1d1592eb250830ea1.tar.gz tigervnc-f3c2026d5be5c64655386bb1d1592eb250830ea1.zip |
librfb needs librdr so make sure it always gets pulled in
-rw-r--r-- | common/rfb/CMakeLists.txt | 2 | ||||
-rw-r--r-- | unix/vncpasswd/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/rfb/CMakeLists.txt b/common/rfb/CMakeLists.txt index 27e3caa5..c2df95ad 100644 --- a/common/rfb/CMakeLists.txt +++ b/common/rfb/CMakeLists.txt @@ -72,7 +72,7 @@ if(WIN32) set(RFB_SOURCES ${RFB_SOURCES} WinPasswdValidator.cxx) endif(WIN32) -set(RFB_LIBRARIES ${JPEG_LIBRARIES} os) +set(RFB_LIBRARIES ${JPEG_LIBRARIES} os rdr) if(HAVE_PAM) set(RFB_SOURCES ${RFB_SOURCES} UnixPasswordValidator.cxx diff --git a/unix/vncpasswd/CMakeLists.txt b/unix/vncpasswd/CMakeLists.txt index d1425af9..a04ed0b9 100644 --- a/unix/vncpasswd/CMakeLists.txt +++ b/unix/vncpasswd/CMakeLists.txt @@ -3,7 +3,7 @@ include_directories(${CMAKE_SOURCE_DIR}/common) add_executable(vncpasswd vncpasswd.cxx) -target_link_libraries(vncpasswd tx rfb rdr os) +target_link_libraries(vncpasswd tx rfb os) install(TARGETS vncpasswd DESTINATION ${BIN_DIR}) install(FILES vncpasswd.man DESTINATION ${MAN_DIR}/man1 RENAME vncpasswd.1) |