diff options
author | Brad King <brad.king@kitware.com> | 2017-03-22 12:48:56 +0000 |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-03-22 08:49:09 -0400 |
commit | 989484d51fa78f0fc0014212148b52c90872f57e (patch) | |
tree | 8cceb3ea36d2478386c9b31ffd6dfd415c9c1e93 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 053317480a12464d405490502dfde75c5fc17b1f (diff) | |
parent | 075f6454092ae058add228eda8220a3680b2f9e4 (diff) | |
download | cmake-989484d51fa78f0fc0014212148b52c90872f57e.tar.gz |
Merge topic 'module-def-and-WINDOWS_EXPORT_ALL_SYMBOLS'
075f6454 Support WINDOWS_EXPORT_ALL_SYMBOLS with `.def` files
21c4ec4f cmGlobalVisualStudioGenerator: Simplify __create_def command generation
24361a45 bindexplib: Add support for parsing and integrating `.def` files
845c4824 bindexplib: Add method for parsing and integrating `.def` files
4f90e793 bindexplib: Revise coding style of CMake-specific methods
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !581
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index f8490bf47b..7c338214df 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1819,7 +1819,7 @@ void cmLocalVisualStudio7Generator::OutputTargetRules( bool addedPrelink = false; cmGeneratorTarget::ModuleDefinitionInfo const* mdi = target->GetModuleDefinitionInfo(configName); - if (mdi && mdi->WindowsExportAllSymbols) { + if (mdi && mdi->DefFileGenerated) { addedPrelink = true; std::vector<cmCustomCommand> commands = target->GetPreLinkCommands(); cmGlobalVisualStudioGenerator* gg = |