diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-25 16:43:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-29 14:43:33 (GMT) |
commit | 29e8b7bfcc8b3530fb4fd2dd04dca59744588b61 (patch) | |
tree | b86ad62c98a940913e5451aad43a3caf37515a87 /Source/cmake.cxx | |
parent | 1ef9b2b6007356ab26cdec42bdf9c79d53745bf6 (diff) | |
download | CMake-29e8b7bfcc8b3530fb4fd2dd04dca59744588b61.zip CMake-29e8b7bfcc8b3530fb4fd2dd04dca59744588b61.tar.gz CMake-29e8b7bfcc8b3530fb4fd2dd04dca59744588b61.tar.bz2 |
cmGlobalGenerator: Create a new Compute step before generation.
Replace the DoGenerate method.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 9d2c19e..619374e 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1607,7 +1607,8 @@ int cmake::Generate() { return -1; } - this->GlobalGenerator->DoGenerate(); + this->GlobalGenerator->Compute(); + this->GlobalGenerator->Generate(); if ( !this->GraphVizFile.empty() ) { std::cout << "Generate graphviz: " << this->GraphVizFile << std::endl; |