Add copy exclusion filters

Repaired windows builder
Fixed /build to be /rebuild
This commit is contained in:
David Anderson
2005-08-24 05:19:23 +00:00
parent 10328f5f81
commit d516824936
7 changed files with 57 additions and 9 deletions

View File

@ -68,11 +68,19 @@ namespace AMXXRelease
m_Plugins = new ArrayList();
}
//called when it's okay to build an extra dir structure
// and copy files to it
public virtual bool CopyExtraFiles(string basedir, string sourcedir)
{
return true;
}
//defines a copy prevention filter
public virtual bool ExcludeCopy(string file)
{
return false;
}
public virtual string GetPluginDir()
{
return GetName();
@ -110,6 +118,4 @@ namespace AMXXRelease
return pl;
}
}
}