diff options
author | Brad King <brad.king@kitware.com> | 2018-10-10 13:02:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-10-10 13:34:12 (GMT) |
commit | 8f076acdb0af6e319005338e3e25d127043e3275 (patch) | |
tree | 6c8a60642c5142d937b6b67ae465bdc4bed1ea47 /Source/cmExtraSublimeTextGenerator.cxx | |
parent | f39bc297dbd5fbce2f547408e583f0e9a8205aef (diff) | |
download | CMake-8f076acdb0af6e319005338e3e25d127043e3275.zip CMake-8f076acdb0af6e319005338e3e25d127043e3275.tar.gz CMake-8f076acdb0af6e319005338e3e25d127043e3275.tar.bz2 |
cmLocalGenerator: Remove AddCompileDefinitions method
This method offers the same definitions as `GetTargetDefines` except
that it excludes the "export" macro on shared libraries. Update call
sites to use `GetTargetDefines` instead. Some of them were incorrectly
excluding the export macro.
Diffstat (limited to 'Source/cmExtraSublimeTextGenerator.cxx')
-rw-r--r-- | Source/cmExtraSublimeTextGenerator.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Source/cmExtraSublimeTextGenerator.cxx b/Source/cmExtraSublimeTextGenerator.cxx index c4cca07..882d39f 100644 --- a/Source/cmExtraSublimeTextGenerator.cxx +++ b/Source/cmExtraSublimeTextGenerator.cxx @@ -384,13 +384,8 @@ std::string cmExtraSublimeTextGenerator::ComputeDefines( cmGeneratorExpressionInterpreter genexInterpreter(lg, config, target, language); - // Add the export symbol definition for shared library objects. - if (const char* exportMacro = target->GetExportMacro()) { - lg->AppendDefines(defines, exportMacro); - } - // Add preprocessor definitions for this target and configuration. - lg->AddCompileDefinitions(defines, target, config, language); + lg->GetTargetDefines(target, config, language, defines); const std::string COMPILE_DEFINITIONS("COMPILE_DEFINITIONS"); if (const char* compile_defs = source->GetProperty(COMPILE_DEFINITIONS)) { lg->AppendDefines( |