aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorFriedrich W. H. Kossebau <kossebau@kde.org>2021-05-07 04:07:29 +0200
committerFriedrich W. H. Kossebau <kossebau@kde.org>2021-05-07 04:07:29 +0200
commitbf5269dfdd94d63d72eb7725f1d3ea3d270d034d (patch)
treeeda97c66a549fcd92a42eb6f78bcd2df05dbbd59 /modules
parent77e9318d5245c6782e4381699d6f485876e8e9cd (diff)
downloadextra-cmake-modules-bf5269dfdd94d63d72eb7725f1d3ea3d270d034d.tar.gz
extra-cmake-modules-bf5269dfdd94d63d72eb7725f1d3ea3d270d034d.tar.bz2
Order macro for attribute for symbol export before that for deprecated
The symbol export/visibility attribute is not standardized so far and needs to be set by language extension attribute declaration at least with clang & MSVC, who both support that when it appears before the standard attribute declaration. NO_CHANGELOG
Diffstat (limited to 'modules')
-rw-r--r--modules/ECMGenerateExportHeader.cmake12
1 files changed, 8 insertions, 4 deletions
diff --git a/modules/ECMGenerateExportHeader.cmake b/modules/ECMGenerateExportHeader.cmake
index f6646899..7cd1418e 100644
--- a/modules/ECMGenerateExportHeader.cmake
+++ b/modules/ECMGenerateExportHeader.cmake
@@ -216,16 +216,18 @@ this, using the generated macros ``FOO_ENABLE_DEPRECATED_SINCE`` and
/**
* @deprecated Since 5.0
*/
+ FOO_EXPORT
FOO_DEPRECATED_VERSION(5, 0, "Use doFoo2()")
- FOO_EXPORT void doFoo();
+ void doFoo();
#endif
#if FOO_ENABLE_DEPRECATED_SINCE(5, 12)
/**
* @deprecated Since 5.12
*/
+ FOO_EXPORT
FOO_DEPRECATED_VERSION(5, 12, "Use doBar2()")
- FOO_EXPORT void doBar();
+ void doBar();
#endif
Projects linking against the "Foo" library can control which part of its
@@ -283,16 +285,18 @@ uses the generated macro ``FOO_BUILD_DEPRECATED_SINCE``, like this:
/**
* @deprecated Since 5.0
*/
+ FOO_EXPORT
FOO_DEPRECATED_VERSION(5, 0, "Use doFoo2()")
- FOO_EXPORT void doFoo();
+ void doFoo();
#endif
#if FOO_ENABLE_DEPRECATED_SINCE(5, 12)
/**
* @deprecated Since 5.12
*/
+ FOO_EXPORT
FOO_DEPRECATED_VERSION(5, 12, "Use doBar2()")
- FOO_EXPORT void doBar();
+ void doBar();
#endif
class FOO_EXPORT Foo {