aboutsummaryrefslogtreecommitdiff
path: root/src/perform.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-08-01 03:09:58 +0000
committerMike Buland <eichlan@xagasoft.com>2006-08-01 03:09:58 +0000
commit935bc7d5223883d87f58a6798f4a0ade7df95afc (patch)
tree83119cd6b407c6e17c21774f1f0cea940d9c948c /src/perform.h
parent73d53b0962cb19a6d2a7686de658a5540ab07017 (diff)
downloadbuild-935bc7d5223883d87f58a6798f4a0ade7df95afc.tar.gz
build-935bc7d5223883d87f58a6798f4a0ade7df95afc.tar.bz2
build-935bc7d5223883d87f58a6798f4a0ade7df95afc.tar.xz
build-935bc7d5223883d87f58a6798f4a0ade7df95afc.zip
It actually builds, now it just needs dependancy tracking, and maybe auto-target
check triggering.
Diffstat (limited to '')
-rw-r--r--src/perform.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/perform.h b/src/perform.h
index fefb05e..2eb8cb0 100644
--- a/src/perform.h
+++ b/src/perform.h
@@ -6,12 +6,18 @@
6class Perform 6class Perform
7{ 7{
8public: 8public:
9 Perform(); 9 Perform( const char *sTarget );
10 virtual ~Perform(); 10 virtual ~Perform();
11 11
12 virtual void execute( class Builder &bld ) = 0; 12 virtual void execute( class Builder &bld ) = 0;
13 13
14 const char *getTarget()
15 {
16 return sTarget;
17 }
18
14private: 19private:
20 StaticString sTarget;
15 21
16}; 22};
17 23