From bdec5d75f649247517bfcdd1abc47e09b5955af9 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 13 Feb 2026 10:04:24 +0100 Subject: [PATCH] Configuration - Fix Cmake static linking warnings missing some spaces (#1075) --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f4344edf56..6a14fcb470 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -116,9 +116,9 @@ if ("${BUILD_LIBRARY_TYPE}" STREQUAL "Shared") set (BUILD_SHARED_LIBRARY_NAME_POSTFIX "" CACHE STRING "${BUILD_SHARED_LIBRARY_NAME_POSTFIX_DESCR}" FORCE) endif() else() - message(AUTHOR_WARNING "OCCT is licensed under LGPL 2.1, which has limitations on" - "static linking with proprietary software." - "OCCT3D offers commercial licensing exceptions to LGPL 2.1." + message(AUTHOR_WARNING "OCCT is licensed under LGPL 2.1, which has limitations on " + "static linking with proprietary software. " + "OCCT3D offers commercial licensing exceptions to LGPL 2.1. " "Please use our contact form at https://occt3d.com/") unset (BUILD_SHARED_LIBS) unset (BUILD_SHARED_LIBRARY_NAME_POSTFIX)