diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-25 17:03:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-30 06:28:31 (GMT) |
commit | 5edb3354854bd2de4f9ea0e2c4af4069f46a4830 (patch) | |
tree | e53fccb422a5056fa070010a346a3b97b886034d /Source/cmGlobalGenerator.h | |
parent | ff1019bfac1380681989242fa904c2d9fe13fd38 (diff) | |
download | CMake-5edb3354854bd2de4f9ea0e2c4af4069f46a4830.zip CMake-5edb3354854bd2de4f9ea0e2c4af4069f46a4830.tar.gz CMake-5edb3354854bd2de4f9ea0e2c4af4069f46a4830.tar.bz2 |
cmGlobalGenerator: Virtualize the Compute step and override it.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 7bf6b24..9492372 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -86,7 +86,7 @@ public: */ virtual void Configure(); - bool Compute(); + virtual bool Compute(); enum TargetTypes { AllTargets, |