diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2019-10-11 13:15:11 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@qt.io> | 2019-10-21 11:20:14 +0000 |
commit | b128d498b2da55a9f87cd2eabb802acc0c48e7d4 (patch) | |
tree | 384fb57d355fc58dfce14babed25cf7e8c020cf0 /cmake | |
parent | fab360d83d4c9e0ca77ecfb44fccc974f279399c (diff) | |
download | qt-creator-b128d498b2da55a9f87cd2eabb802acc0c48e7d4.tar.gz |
CMake Buildsystem: Enable visibility settings for binaries
This should not matter, but makes the add_qtc_executable targets
match up with the PCH, so that they should build a bit faster.
Change-Id: Ibecaaf7fd98d5b927d52e4956b1bea4a5775afba
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/QtCreatorAPI.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/QtCreatorAPI.cmake b/cmake/QtCreatorAPI.cmake index f122ef1daf..300b7cd50a 100644 --- a/cmake/QtCreatorAPI.cmake +++ b/cmake/QtCreatorAPI.cmake @@ -838,6 +838,8 @@ function(add_qtc_executable name) INSTALL_RPATH "${_RPATH_BASE}/${_RELATIVE_LIB_PATH}" RUNTIME_OUTPUT_DIRECTORY "${_output_binary_dir}/${_DESTINATION}" QT_SKIP_TRANSLATION "${skip_translation}" + CXX_VISIBILITY_PRESET hidden + VISIBILITY_INLINES_HIDDEN ON ${_arg_PROPERTIES} ) append_extra_translations("${name}" "${_arg_EXTRA_TRANSLATIONS}") |