From d19ada0aa88aba1c7b439035c0028440ac860ec3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 12 Sep 2006 00:22:33 +0000 Subject: Build now builds, it has viewers, and dependancy checking, and everything works. Now we have to add cleaning, caching, and more viewer hooks / viewers. --- src/performcommand.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/performcommand.cpp') diff --git a/src/performcommand.cpp b/src/performcommand.cpp index 6963022..f6da4ac 100644 --- a/src/performcommand.cpp +++ b/src/performcommand.cpp @@ -11,10 +11,15 @@ PerformCommand::~PerformCommand() { } -Perform *PerformCommand::duplicate( Build &bld, const std::string &cont ) +Perform *PerformCommand::duplicate( Build &bld, const std::string &cont, VarMap *mExtra ) { Perform *pRet = new PerformCommand(); - pRet->copyData( this, bld, cont, NULL ); + pRet->copyData( this, bld, cont, mExtra ); return pRet; } +void PerformCommand::execute( Build &bld ) +{ + system( lParam.front().c_str() ); +} + -- cgit v1.2.3