From c989cd29f9455cf14fe7c80c06f8000064c6f3a7 Mon Sep 17 00:00:00 2001 From: Flamefire Date: Wed, 14 Aug 2019 08:57:56 +0200 Subject: [PATCH] Enable hidden visibility for drivers --- extras/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/CMakeLists.txt b/extras/CMakeLists.txt index 9a2fca06d2..4424a4795a 100644 --- a/extras/CMakeLists.txt +++ b/extras/CMakeLists.txt @@ -2,8 +2,8 @@ add_custom_target(drivers) # Minimal visibility to avoid name clashes among plugins -#set(CMAKE_CXX_VISIBILITY_PRESET hidden) -#set(CMAKE_VISIBILITY_INLINES_HIDDEN ON) +set(CMAKE_CXX_VISIBILITY_PRESET hidden) +set(CMAKE_VISIBILITY_INLINES_HIDDEN ON) add_subdirectory(audioDrivers) add_subdirectory(videoDrivers)