diff options
author | MyungJoo Ham <myungjoo.ham@samsung.com> | 2017-10-11 15:16:57 +0900 |
---|---|---|
committer | MyungJoo Ham <myungjoo.ham@samsung.com> | 2017-10-11 15:16:57 +0900 |
commit | 915c76ded744c0f5f151402b9fa69f3fd8452573 (patch) | |
tree | ca6a387466543248890f346847acaa8343989b22 /Source/cmTestGenerator.h | |
parent | 317dbdb79761ef65e45c7358cfc7571c6afa54ad (diff) | |
download | cmake-915c76ded744c0f5f151402b9fa69f3fd8452573.tar.gz cmake-915c76ded744c0f5f151402b9fa69f3fd8452573.tar.bz2 cmake-915c76ded744c0f5f151402b9fa69f3fd8452573.zip |
Imported Upstream version 3.9.4upstream/3.9.4
Diffstat (limited to 'Source/cmTestGenerator.h')
-rw-r--r-- | Source/cmTestGenerator.h | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/Source/cmTestGenerator.h b/Source/cmTestGenerator.h index 2c69fc3c5..b2273050f 100644 --- a/Source/cmTestGenerator.h +++ b/Source/cmTestGenerator.h @@ -1,43 +1,45 @@ -/*============================================================================ - CMake - Cross Platform Makefile Generator - Copyright 2000-2009 Kitware, Inc., Insight Software Consortium - - Distributed under the OSI-approved BSD License (the "License"); - see accompanying file Copyright.txt for details. - - This software is distributed WITHOUT ANY WARRANTY; without even the - implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the License for more information. -============================================================================*/ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ #ifndef cmTestGenerator_h #define cmTestGenerator_h +#include "cmConfigure.h" + #include "cmScriptGenerator.h" +#include <iosfwd> +#include <string> +#include <vector> + +class cmLocalGenerator; class cmTest; /** \class cmTestGenerator * \brief Support class for generating install scripts. * */ -class cmTestGenerator: public cmScriptGenerator +class cmTestGenerator : public cmScriptGenerator { + CM_DISABLE_COPY(cmTestGenerator) + public: cmTestGenerator(cmTest* test, - std::vector<std::string> const& - configurations = std::vector<std::string>()); - virtual ~cmTestGenerator(); + std::vector<std::string> const& configurations = + std::vector<std::string>()); + ~cmTestGenerator() CM_OVERRIDE; -protected: - virtual void GenerateScriptConfigs(std::ostream& os, Indent const& indent); - virtual void GenerateScriptActions(std::ostream& os, Indent const& indent); - virtual void GenerateScriptForConfig(std::ostream& os, - const char* config, - Indent const& indent); - virtual void GenerateScriptNoConfig(std::ostream& os, Indent const& indent); - virtual bool NeedsScriptNoConfig() const; - void GenerateOldStyle(std::ostream& os, Indent const& indent); + void Compute(cmLocalGenerator* lg); +protected: + void GenerateScriptConfigs(std::ostream& os, Indent indent) CM_OVERRIDE; + void GenerateScriptActions(std::ostream& os, Indent indent) CM_OVERRIDE; + void GenerateScriptForConfig(std::ostream& os, const std::string& config, + Indent indent) CM_OVERRIDE; + void GenerateScriptNoConfig(std::ostream& os, Indent indent) CM_OVERRIDE; + bool NeedsScriptNoConfig() const CM_OVERRIDE; + void GenerateOldStyle(std::ostream& os, Indent indent); + + cmLocalGenerator* LG; cmTest* Test; bool TestGenerated; }; |