X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpkgconfiggenerator.h;h=a9adbc6fe2a86100a26d9c032375b47e48442a72;hb=HEAD;hp=727b3e29536e0e24c14cb42c054d3d8179e05ca4;hpb=451ef4f33b5a57dcb56bd7cb671bed359ac86247;p=builder.git diff --git a/source/pkgconfiggenerator.h b/source/pkgconfiggenerator.h deleted file mode 100644 index 727b3e2..0000000 --- a/source/pkgconfiggenerator.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef PKGCONFIGGENERATOR_H_ -#define PKGCONFIGGENERATOR_H_ - -#include "internaltask.h" -#include "tool.h" - -class PkgConfigFile; - -class PkgConfigGenerator: public Tool -{ -private: - class Worker: public InternalTask::Worker - { - private: - const PkgConfigFile ⌖ - - public: - Worker(const PkgConfigFile &t): target(t) { } - - private: - void main() override; - - std::string prefixify(const Msp::FS::Path &, const Msp::FS::Path &); - }; - -public: - PkgConfigGenerator(Builder &b): Tool(b, "PCG") { } - - Target *create_target(const std::vector &, const std::string &) override; - Task *run(const Target &) const override; -}; - -#endif