diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-25 18:44:35 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-27 19:59:03 (GMT) |
commit | 570938cbfd132ad0e586327466109aad87c21ede (patch) | |
tree | a8f8d9d259868f2227809f3846096776c83fe7e0 /Source/cmCoreTryCompile.cxx | |
parent | ec38e4c84faa276e664f950b417a71c3901485f6 (diff) | |
download | CMake-570938cbfd132ad0e586327466109aad87c21ede.zip CMake-570938cbfd132ad0e586327466109aad87c21ede.tar.gz CMake-570938cbfd132ad0e586327466109aad87c21ede.tar.bz2 |
cmExportTryCompileFileGenerator: Create cmGeneratorTargets.
This is not a deprecated behavior, but only requires IMPORTED targets
be made.
Diffstat (limited to 'Source/cmCoreTryCompile.cxx')
-rw-r--r-- | Source/cmCoreTryCompile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCoreTryCompile.cxx b/Source/cmCoreTryCompile.cxx index e1e1a5c..ffb349e 100644 --- a/Source/cmCoreTryCompile.cxx +++ b/Source/cmCoreTryCompile.cxx @@ -379,7 +379,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv) if (!targets.empty()) { std::string fname = "/" + std::string(targetName) + "Targets.cmake"; - cmExportTryCompileFileGenerator tcfg; + cmExportTryCompileFileGenerator tcfg(gg); tcfg.SetExportFile((this->BinaryDirectory + fname).c_str()); tcfg.SetExports(targets); tcfg.SetConfig(this->Makefile->GetSafeDefinition( |