diff options
author | Brad King <brad.king@kitware.com> | 2015-10-06 14:59:00 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-10-06 14:59:00 (GMT) |
commit | c914d2bda278b588c1dca3e0fa5ec97a64c56c3c (patch) | |
tree | e10024eaa740ad8edfe5918d2c1e06f72c4523de /Source/cmGlobalGenerator.h | |
parent | 9d5bfa53e63c894b1c774258882877f57d61638f (diff) | |
parent | 616f03114eb41218dc3278e72b52d8de09e40365 (diff) | |
download | CMake-c914d2bda278b588c1dca3e0fa5ec97a64c56c3c.zip CMake-c914d2bda278b588c1dca3e0fa5ec97a64c56c3c.tar.gz CMake-c914d2bda278b588c1dca3e0fa5ec97a64c56c3c.tar.bz2 |
Merge topic 'refactor-computation'
616f0311 cmGlobalGenerator: Move path computation to Compute.
9eea0486 cmGlobalGenerator: Do more computation at compute time.
2eca0559 cmGlobalGenerator: De-virtualize Compute().
21f428f4 VisualStudio: Replace Compute override with AddExtraIDETargets override.
a9588e90 VisualStudio10: Initialize the LongestSource at generate time.
4407eee0 cmGlobalGenerator: Call AddExtraIDETargets as a hook of Compute().
a09c545d Xcode: Extract a AddExtraIDETargets method.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 25e06cd..b22c695 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -83,7 +83,8 @@ public: */ virtual void Configure(); - virtual bool Compute(); + bool Compute(); + virtual void AddExtraIDETargets() {} enum TargetTypes { AllTargets, |