From 38c0859c412214cfff2d6f9d623bda962af5550c Mon Sep 17 00:00:00 2001 From: Kathleen Biagas Date: Mon, 30 Jan 2023 17:03:26 -0800 Subject: [PATCH] Don't build qtssh on unix. (#18453) --- src/tools/third_party/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tools/third_party/CMakeLists.txt b/src/tools/third_party/CMakeLists.txt index c31fd8d3b1f..daafd6bb019 100644 --- a/src/tools/third_party/CMakeLists.txt +++ b/src/tools/third_party/CMakeLists.txt @@ -8,10 +8,13 @@ # Remove if test that is handled by the parent dir's CMakeLists.txt # (VISIT_DBIO_ONLY, VISIT_ENGINE_ONLY, AND VISIT_SERVER_COMPONENTS_ONLY) # +# Kathleen Biagas, Mon Jan 30, 2023 +# No longer build qtssh on unix. +# #**************************************************************************** add_subdirectory(mpeg2encode) -if(WIN32 OR UNIX) +if(WIN32) add_subdirectory(qtssh) endif()