diff options
author | Alexander Golubev <[email protected]> | 2024-03-10 01:12:34 +0300 |
---|---|---|
committer | Alexander Golubev <[email protected]> | 2024-03-10 01:12:34 +0300 |
commit | bce94208bbeaad14ca95e1671b8a7164976afd46 (patch) | |
tree | 8ef479e2bd17ed56726bceb7272f1714d89b1c1a | |
parent | 83a22cbef3e071e25a26553a39b0bea563bd74bb (diff) | |
download | tqt3-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 <[email protected]>
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b04a984f3..ea1e5b3c2 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} ) |