diff options
author | Brad King <brad.king@kitware.com> | 2015-04-15 13:30:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-04-15 13:58:42 (GMT) |
commit | 885ab9ab37b1f4c094036814882886f5ec9efaf4 (patch) | |
tree | 4f20a6ab6c4f846c420f400fe97322e168098235 /Source/cmGlobalVisualStudioGenerator.h | |
parent | cdc53b62c20605467334ecb80c474533e04ff26c (diff) | |
download | CMake-885ab9ab37b1f4c094036814882886f5ec9efaf4.zip CMake-885ab9ab37b1f4c094036814882886f5ec9efaf4.tar.gz CMake-885ab9ab37b1f4c094036814882886f5ec9efaf4.tar.bz2 |
VS: Drop reload macros for VS >= 10 (#11258,#14680)
We never implemented them for VS 11 (2012), 12 (2013), or 14 (2015).
For VS 10 (2010) the reload macro does not work correctly when run from
inside a build launched through the IDE because stopping the build kills
the CMake that is driving the reload. Fortunately VS >= 10 know how to
reload the whole solution anyway.
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.h')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index 356f4d4..cb54132 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -51,8 +51,8 @@ public: * Call the ReloadProjects macro if necessary based on * GetFilesReplacedDuringGenerate results. */ - virtual void CallVisualStudioMacro(MacroName m, - const char* vsSolutionFile = 0); + void CallVisualStudioMacro(MacroName m, + const char* vsSolutionFile = 0); // return true if target is fortran only bool TargetIsFortranOnly(cmTarget const& t); |