diff options
author | Cristian Adam <cristian.adam@qt.io> | 2022-04-21 14:10:09 +0200 |
---|---|---|
committer | Cristian Adam <cristian.adam@qt.io> | 2022-04-29 07:16:53 +0000 |
commit | 88781a003ffd5f699f70b06d2d99325cf4e60c0f (patch) | |
tree | 2b4c888fbcdf57a870302d4d6e68cefef7e19a62 /src/plugins/qmljseditor | |
parent | 58b0a5056c3afe922a2fe8570735da03fb9c3db5 (diff) | |
download | qt-creator-88781a003ffd5f699f70b06d2d99325cf4e60c0f.tar.gz |
CMake: Qt Creator Static build support
This adds the build system feature that allows Qt Creator's libraries
and plugins to be compiled statically.
Fixes some symbol clashes when all plugins are linked into the same
executable.
Support for actually loading static plugins will be added in a separate
commit.
The feature is controlled by QTC_STATIC_BUILD which by default is OFF.
Change-Id: I1fab7953c43e42dc75619e35660029ee067106df
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/plugins/qmljseditor')
-rw-r--r-- | src/plugins/qmljseditor/qmljseditor_global.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/qmljseditor/qmljseditor_global.h b/src/plugins/qmljseditor/qmljseditor_global.h index bd4a5139dc..126b5119ff 100644 --- a/src/plugins/qmljseditor/qmljseditor_global.h +++ b/src/plugins/qmljseditor/qmljseditor_global.h @@ -29,6 +29,8 @@ #if defined(QMLJSEDITOR_LIBRARY) # define QMLJSEDITOR_EXPORT Q_DECL_EXPORT +#elif defined(QMLJSEDITOR_STATIC_LIBRARY) +# define QMLJSEDITOR_EXPORT #else # define QMLJSEDITOR_EXPORT Q_DECL_IMPORT #endif |