summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2024-03-10 01:12:34 +0300
committerAlexander Golubev <fatzer2@gmail.com>2024-03-10 01:12:34 +0300
commitbce94208bbeaad14ca95e1671b8a7164976afd46 (patch)
tree8ef479e2bd17ed56726bceb7272f1714d89b1c1a
parent83a22cbef3e071e25a26553a39b0bea563bd74bb (diff)
downloadtqt3-feat/cmakeConv-r1.tar.gz
tqt3-feat/cmakeConv-r1.zip
cmake: set WITH_GCC_VISIBILITY to ON by defaultfeat/cmakeConv-r1
The old ./configure has it ON by default as well Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b04a984f..ea1e5b3c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -66,9 +66,9 @@ set( QT_INSTALL_SYSCONF "/etc/${PROJECT_NAME}" CACH
##### optional stuff
option( WITH_ALL_OPTIONS "Enable all optional support" ON )
-option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" OFF )
+option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ON )
-option( WITH_STL "Enable c++ stl support" ON ) # breaks ABI
+option( WITH_STL "Enable c++ stl support" ON ) # breaks ABI
option( WITH_IPV6 "Enable IPv6 support" ${WITH_ALL_OPTIONS} )
option( WITH_CUPS "Enable cups support" ${WITH_ALL_OPTIONS} )
option( WITH_GLIBMAINLOOP "Enable Glib support" ${WITH_ALL_OPTIONS} )