From 2f4d02f41771d387470e250584463f3658cf1265 Mon Sep 17 00:00:00 2001 From: Alexey Rybalchenko Date: Wed, 24 Aug 2022 20:05:56 +0200 Subject: [PATCH] Disable hidden CXX_VISIBILITY_PRESET for custom ctrl example --- examples/custom-controller/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom-controller/CMakeLists.txt b/examples/custom-controller/CMakeLists.txt index 50d4e856..58a529e3 100644 --- a/examples/custom-controller/CMakeLists.txt +++ b/examples/custom-controller/CMakeLists.txt @@ -10,7 +10,7 @@ set(target fairmq-ex-custom-controller) add_executable(${target} main.cxx) target_link_libraries(${target} PRIVATE FairMQ) set_target_properties(${target} PROPERTIES - CXX_VISIBILITY_PRESET hidden + # CXX_VISIBILITY_PRESET hidden ENABLE_EXPORTS ON )