diff options
author | Andreas Schuh <andreas.schuh.84@gmail.com> | 2016-03-17 11:09:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-03-17 14:40:58 (GMT) |
commit | 6a6e5d89b5665508276d65de4c82f0b4daa2dcfd (patch) | |
tree | d54b91e18c5c4905ea995599bba90efcec6fe683 /Modules/exportheader.cmake.in | |
parent | be5a8973c39e13d8978c242936dca63a9a746a57 (diff) | |
download | CMake-6a6e5d89b5665508276d65de4c82f0b4daa2dcfd.zip CMake-6a6e5d89b5665508276d65de4c82f0b4daa2dcfd.tar.gz CMake-6a6e5d89b5665508276d65de4c82f0b4daa2dcfd.tar.bz2 |
GenerateExportHeader: Allow common NO_DEPRECATED_MACRO_NAME for multiple libs
Diffstat (limited to 'Modules/exportheader.cmake.in')
-rw-r--r-- | Modules/exportheader.cmake.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/exportheader.cmake.in b/Modules/exportheader.cmake.in index 7058f54..7cfbcbd 100644 --- a/Modules/exportheader.cmake.in +++ b/Modules/exportheader.cmake.in @@ -34,7 +34,9 @@ #endif #if @DEFINE_NO_DEPRECATED@ /* DEFINE_NO_DEPRECATED */ -# define @NO_DEPRECATED_MACRO_NAME@ +# ifndef @NO_DEPRECATED_MACRO_NAME@ +# define @NO_DEPRECATED_MACRO_NAME@ +# endif #endif #endif |