/* KDevelop Custom Makefile Support * * Copyright 2007 Dukju Ahn * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. */ #ifndef CUSTOMMAKEMODELITEMS_H #define CUSTOMMAKEMODELITEMS_H #include class CustomMakeTargetItem : public KDevelop::ProjectTargetItem { public: CustomMakeTargetItem( KDevelop::IProject *project, const QString &name, ProjectBaseItem*parent=NULL ); virtual KUrl::List includeDirectories() const; virtual QHash environment() const; virtual QList > defines() const; private: KUrl::List m_includeDirs; QHash m_envs; QList > m_defines; }; #endif