You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
piklab/src/tools/gputils/gputils_compile.h

80 lines
2.5 KiB

/***************************************************************************
* Copyright (C) 2005-2006 Nicolas Hadacek <hadacek@kde.org> *
* *
* 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 GPUTILS_COMPILE_H
#define GPUTILS_COMPILE_H
#include "tools/list/compile_process.h"
namespace GPUtils
{
//-----------------------------------------------------------------------------
class Process : public Compile::Process
{
TQ_OBJECT
private:
virtual TQString deviceName() const;
virtual bool hasLinkerScript() const { return ( _data.linkType==Compile::Icd2Linking || Compile::Process::hasLinkerScript() ); }
};
//-----------------------------------------------------------------------------
class AssembleFile : public Process
{
TQ_OBJECT
private:
virtual void logStderrLine(const TQString &line);
};
//-----------------------------------------------------------------------------
class AssembleStandaloneFile : public AssembleFile
{
TQ_OBJECT
private:
virtual TQString outputFiles() const;
virtual TQStringList genericArguments(const Compile::Config &config) const;
};
//-----------------------------------------------------------------------------
class AssembleProjectFile : public AssembleFile
{
TQ_OBJECT
private:
virtual TQString outputFiles() const;
virtual TQStringList genericArguments(const Compile::Config &config) const;
};
//-----------------------------------------------------------------------------
class LinkProject : public Process
{
TQ_OBJECT
private:
virtual TQString outputFiles() const;
virtual TQStringList genericArguments(const Compile::Config &config) const;
virtual void logStderrLine(const TQString &line) { doLog(filterType(line), line, TQString(), 0); }
};
//-----------------------------------------------------------------------------
class LibraryProject : public Process
{
TQ_OBJECT
private:
virtual TQString outputFiles() const;
virtual TQStringList genericArguments(const Compile::Config &config) const;
virtual void logStderrLine(const TQString &line) { doLog(filterType(line), line, TQString(), 0); }
};
} // namespace
#endif