From 5c968dd8a4679817c472cbe53b118b913ea8b25c Mon Sep 17 00:00:00 2001 From: Christian Beier Date: Thu, 27 Sep 2018 19:50:44 +0200 Subject: [PATCH] CMake: fix build error that occured on Windows with CMake 3.12 --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 70907b8..3f5e756 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -187,6 +187,8 @@ else() endif(ZLIB_FOUND) if(JPEG_FOUND) set(LIBVNCSERVER_HAVE_LIBJPEG 1) +else() + unset(JPEG_LIBRARIES) # would otherwise confuse target_link_libraries() endif(JPEG_FOUND) if(PNG_FOUND) set(LIBVNCSERVER_HAVE_LIBPNG 1)