From c310a25c9feff9f9ae74ce90f22e4410f0d526f7 Mon Sep 17 00:00:00 2001 From: Julius Pfrommer Date: Mon, 8 Oct 2018 10:10:43 +0200 Subject: [PATCH] CMake: Remove experimental mark from PubSub. But keep as advanced option --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b3ad91a9e..8e1fd4316 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -184,7 +184,7 @@ if(UA_ENABLE_MULTITHREADING) set(UA_ENABLE_IMMUTABLE_NODES ON) endif() -option(UA_ENABLE_PUBSUB "Enable publish/subscribe (experimental)" OFF) +option(UA_ENABLE_PUBSUB "Enable publish/subscribe" OFF) mark_as_advanced(UA_ENABLE_PUBSUB) option(UA_ENABLE_PUBSUB_DELTAFRAMES "Enable sending of delta frames with only the changes" OFF) mark_as_advanced(UA_ENABLE_PUBSUB_DELTAFRAMES) @@ -192,7 +192,7 @@ option(UA_ENABLE_PUBSUB_INFORMATIONMODEL "Enable PubSub information model twin" mark_as_advanced(UA_ENABLE_PUBSUB_INFORMATIONMODEL) if(UA_ENABLE_PUBSUB_INFORMATIONMODEL) if(NOT UA_ENABLE_PUBSUB) - message(FATAL_ERROR "PubSub information model representation cannot be used with disabled PubSub function.") + message(FATAL_ERROR "PubSub information model representation cannot be used with disabled PubSub function.") endif() endif()