From 573427479db7cf62520939397fa51015c338be4d Mon Sep 17 00:00:00 2001 From: Julius Pfrommer Date: Mon, 13 May 2024 14:11:14 +0200 Subject: [PATCH] fix(doc): Remove outdated CMake component specification --- doc/building.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/building.rst b/doc/building.rst index 0708acb97b5..e335ccf565d 100644 --- a/doc/building.rst +++ b/doc/building.rst @@ -53,9 +53,7 @@ In your own CMake project you can then include the open62541 library using: .. code-block:: cmake - # optionally you can also specify a specific version - # e.g. find_package(open62541 1.0.0) - find_package(open62541 REQUIRED COMPONENTS Events FullNamespace) + find_package(open62541 REQUIRED) add_executable(main main.cpp) target_link_libraries(main open62541::open62541)