/*============================================================================ CMake - Cross Platform Makefile Generator Copyright 2013 Stephen Kelly 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. ============================================================================*/ #ifndef cmGeneratorExpressionEvaluationFile_h #define cmGeneratorExpressionEvaluationFile_h #include "cmStandardIncludes.h" #include #include "cmGeneratorExpression.h" //---------------------------------------------------------------------------- class cmGeneratorExpressionEvaluationFile { public: cmGeneratorExpressionEvaluationFile(const std::string &input, cmsys::auto_ptr outputFileExpr, cmMakefile *makefile, cmsys::auto_ptr condition, bool inputIsContent); void Generate(); std::vector GetFiles() const { return this->Files; } private: void Generate(const char *config, cmCompiledGeneratorExpression* inputExpression, std::map &outputFiles); private: const std::string Input; const cmsys::auto_ptr OutputFileExpr; cmMakefile *Makefile; const cmsys::auto_ptr Condition; std::vector Files; const bool InputIsContent; }; #endif