From 15489bb956d3ae28904c6a084d761b230b372764 Mon Sep 17 00:00:00 2001
From: Arnaud Billon <arnaud.billon@kitware.com>
Date: Tue, 19 Oct 2021 11:55:25 +0200
Subject: [PATCH] [fix] Simplify SOFTWARE_VENDOR

SOFTWARE_VENDOR is used by default for the Qt settings folder, we do not want to introduce special characters in it.
---
 Application/branding.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Application/branding.cmake b/Application/branding.cmake
index f1b439f3d..a682649ff 100644
--- a/Application/branding.cmake
+++ b/Application/branding.cmake
@@ -2,7 +2,7 @@
 
 # Software Name / Vendor
 set(SOFTWARE_NAME   "LidarView")
-set(SOFTWARE_VENDOR "Kitware, Inc.")
+set(SOFTWARE_VENDOR "Kitware")
 
 # Software LOGO / ICON # Must be absolute to be used by packaging
 set(SOFTWARE_ICON_PATH "${CMAKE_CURRENT_LIST_DIR}/SoftwareInformation/logo.ico")
-- 
GitLab