diff options
Diffstat (limited to 'src/build.cpp')
-rw-r--r-- | src/build.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/build.cpp b/src/build.cpp index a7421de..113f61f 100644 --- a/src/build.cpp +++ b/src/build.cpp | |||
@@ -429,3 +429,8 @@ void Build::addToGroup( const std::string &sGroup, Target *pTarget ) | |||
429 | mGroup[sGroup].push_back( pTarget ); | 429 | mGroup[sGroup].push_back( pTarget ); |
430 | } | 430 | } |
431 | 431 | ||
432 | bool Build::hasAction( const std::string &str ) | ||
433 | { | ||
434 | return mAction.find( str ) != mAction.end(); | ||
435 | } | ||
436 | |||