diff options
-rw-r--r-- | modules/ECMGenerateExportHeader.cmake | 12 | ||||
-rw-r--r-- | tests/ECMGenerateExportHeaderTest/library/library.hpp | 6 |
2 files changed, 12 insertions, 6 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 { diff --git a/tests/ECMGenerateExportHeaderTest/library/library.hpp b/tests/ECMGenerateExportHeaderTest/library/library.hpp index 4afe87ac..4b9fc66a 100644 --- a/tests/ECMGenerateExportHeaderTest/library/library.hpp +++ b/tests/ECMGenerateExportHeaderTest/library/library.hpp @@ -11,13 +11,15 @@ enum Enum { }; #if LIBRARY_ENABLE_DEPRECATED_SINCE(2, 0) +LIBRARY_EXPORT LIBRARY_DEPRECATED_VERSION(2, 0, "Deprecated at 2.0") -LIBRARY_EXPORT void function_deprecatedAt2_0(); +void function_deprecatedAt2_0(); #endif #if LIBRARY_ENABLE_DEPRECATED_SINCE(2, 12) +LIBRARY_EXPORT LIBRARY_DEPRECATED_VERSION(2, 12, "Deprecated at 2.12") -LIBRARY_EXPORT void function_deprecatedAt2_12(); +void function_deprecatedAt2_12(); #endif LIBRARY_EXPORT void function_not_deprecated(); |