diff options
author | Brad King <brad.king@kitware.com> | 2016-06-16 14:54:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-06-17 18:22:28 (GMT) |
commit | 0392f72bef5f1394c2dba3740f2a701fe1a98f0d (patch) | |
tree | 5bb6a79a0a64bce356ef4f7a6d0c7df4b0e474e7 /Source/cmNinjaTargetGenerator.cxx | |
parent | 9e4725560493fdac423102469da6dbe1779383c4 (diff) | |
download | CMake-0392f72bef5f1394c2dba3740f2a701fe1a98f0d.zip CMake-0392f72bef5f1394c2dba3740f2a701fe1a98f0d.tar.gz CMake-0392f72bef5f1394c2dba3740f2a701fe1a98f0d.tar.bz2 |
Refactor Makefile/Ninja tool working directory storage
Move cmCommonTargetGenerator::WorkingDirectory to cmLocalCommonGenerator
and add an access method.
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index 05a0a63..b413c33 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -58,7 +58,7 @@ cmNinjaTargetGenerator* cmNinjaTargetGenerator::New(cmGeneratorTarget* target) } cmNinjaTargetGenerator::cmNinjaTargetGenerator(cmGeneratorTarget* target) - : cmCommonTargetGenerator(cmOutputConverter::HOME_OUTPUT, target) + : cmCommonTargetGenerator(target) , MacOSXContentGenerator(0) , OSXBundleGenerator(0) , MacContentFolders() |