2013-01-02 02:20:04 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2013 Stephen Kelly <steveire@gmail.com>
|
|
|
|
|
|
|
|
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 cmTargetPropCommandBase_h
|
|
|
|
#define cmTargetPropCommandBase_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
class cmTarget;
|
|
|
|
|
|
|
|
class cmTargetPropCommandBase : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
enum ArgumentFlags
|
|
|
|
{
|
2013-01-02 02:20:04 +04:00
|
|
|
NO_FLAGS = 0,
|
2013-01-20 17:04:13 +04:00
|
|
|
PROCESS_BEFORE = 1,
|
|
|
|
PROCESS_SYSTEM = 2
|
2013-01-02 02:20:04 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
bool HandleArguments(std::vector<std::string> const& args,
|
2013-09-03 00:27:32 +04:00
|
|
|
const std::string& prop,
|
|
|
|
ArgumentFlags flags = NO_FLAGS);
|
2013-01-02 02:20:04 +04:00
|
|
|
|
2013-01-31 18:31:58 +04:00
|
|
|
cmTypeMacro(cmTargetPropCommandBase, cmCommand);
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2013-01-29 20:20:45 +04:00
|
|
|
protected:
|
|
|
|
std::string Property;
|
2016-05-16 17:34:04 +03:00
|
|
|
cmTarget* Target;
|
|
|
|
|
|
|
|
virtual void HandleInterfaceContent(cmTarget* tgt,
|
|
|
|
const std::vector<std::string>& content,
|
|
|
|
bool prepend, bool system);
|
2013-01-29 20:20:45 +04:00
|
|
|
|
2013-01-02 02:20:04 +04:00
|
|
|
private:
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual void HandleImportedTarget(const std::string& tgt) = 0;
|
|
|
|
virtual void HandleMissingTarget(const std::string& name) = 0;
|
2013-01-02 02:20:04 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual bool HandleDirectContent(cmTarget* tgt,
|
|
|
|
const std::vector<std::string>& content,
|
2013-01-20 17:04:13 +04:00
|
|
|
bool prepend, bool system) = 0;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual std::string Join(const std::vector<std::string>& content) = 0;
|
2013-01-02 02:20:04 +04:00
|
|
|
|
|
|
|
bool ProcessContentArgs(std::vector<std::string> const& args,
|
2016-05-16 17:34:04 +03:00
|
|
|
unsigned int& argIndex, bool prepend, bool system);
|
|
|
|
bool PopulateTargetProperies(const std::string& scope,
|
|
|
|
const std::vector<std::string>& content,
|
2013-01-20 17:04:13 +04:00
|
|
|
bool prepend, bool system);
|
2013-01-02 02:20:04 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|