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/cmCommonTargetGenerator.h | |
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/cmCommonTargetGenerator.h')
-rw-r--r-- | Source/cmCommonTargetGenerator.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmCommonTargetGenerator.h b/Source/cmCommonTargetGenerator.h index ace5351..c35d22a 100644 --- a/Source/cmCommonTargetGenerator.h +++ b/Source/cmCommonTargetGenerator.h @@ -28,8 +28,7 @@ class cmSourceFile; class cmCommonTargetGenerator { public: - cmCommonTargetGenerator(cmOutputConverter::RelativeRoot wd, - cmGeneratorTarget* gt); + cmCommonTargetGenerator(cmGeneratorTarget* gt); virtual ~cmCommonTargetGenerator(); std::string const& GetConfigName() const; @@ -45,7 +44,6 @@ protected: // Helper to add flag for windows .def file. void AddModuleDefinitionFlag(std::string& flags); - cmOutputConverter::RelativeRoot WorkingDirectory; cmGeneratorTarget* GeneratorTarget; cmMakefile* Makefile; cmLocalCommonGenerator* LocalGenerator; |