aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-02-17 14:27:51 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-02-17 14:28:55 +0100
commitff1e0c9ba8e6c42457b34bfbac2bda1dbbffb91b (patch)
treee56d8abd98005c66588c7903c27879ad34791db0 /cmake
parent79b631a2572748606431fd4e3c1ee38a47cad5a9 (diff)
downloadBobinkCOpcUa-ff1e0c9ba8e6c42457b34bfbac2bda1dbbffb91b.tar.gz
BobinkCOpcUa-ff1e0c9ba8e6c42457b34bfbac2bda1dbbffb91b.zip
Fix CMakeLists.txt header comment to survive cmake-format
Diffstat (limited to 'cmake')
-rw-r--r--cmake/BuildDeps.cmake14
1 files changed, 7 insertions, 7 deletions
diff --git a/cmake/BuildDeps.cmake b/cmake/BuildDeps.cmake
index 1f64e1f..ddc3d34 100644
--- a/cmake/BuildDeps.cmake
+++ b/cmake/BuildDeps.cmake
@@ -1,12 +1,11 @@
# ======================================
-# BuildDeps.cmake
+# BuildDeps.cmake
# ======================================
#
-# Configures, builds, and installs the open62541 library into a
-# local prefix under the build tree. Skips the build when the
-# installed shared library already exists. After installation,
-# open62541 is imported via find_package so downstream targets
-# can link against open62541::open62541.
+# Configures, builds, and installs the open62541 library into a local prefix
+# under the build tree. Skips the build when the installed shared library
+# already exists. After installation, open62541 is imported via find_package so
+# downstream targets can link against open62541::open62541.
set(OPEN62541_SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/open62541")
set(OPEN62541_BUILD_DIR "${CMAKE_BINARY_DIR}/deps/open62541")
@@ -55,4 +54,5 @@ else()
message(STATUS "open62541 already built, skipping")
endif()
-find_package(open62541 REQUIRED PATHS "${OPEN62541_INSTALL_DIR}" NO_DEFAULT_PATH)
+find_package(open62541 REQUIRED PATHS "${OPEN62541_INSTALL_DIR}"
+ NO_DEFAULT_PATH)