/*
* #%L
* Native ARchive plugin for Maven
* %%
* Copyright (C) 2002 - 2014 NAR Maven Plugin developers.
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package com.github.maven_nar.cpptasks;
import java.io.File;
import org.apache.tools.ant.BuildException;
import com.github.maven_nar.cpptasks.types.ConditionalFileSet;
/**
* Specifies files that should not be compiled using precompiled headers.
*
* @author Curt Arnold
*/
public final class PrecompileExceptDef {
private ConditionalFileSet localSet = null;
/**
* Collection of <fileset>contained by definition
*/
private final PrecompileDef owner;
/**
* Constructor
*
*/
public PrecompileExceptDef(final PrecompileDef owner) {
this.owner = owner;
}
/**
* Adds filesets that specify files that should not be processed using
* precompiled headers.
*
* @param exceptSet
* FileSet specify files that should not be processed with
* precompiled headers enabled.
*/
public void addFileset(final ConditionalFileSet exceptSet) {
this.owner.appendExceptFileSet(exceptSet);
}
public void execute() throws org.apache.tools.ant.BuildException {
throw new org.apache.tools.ant.BuildException("Not an actual task, but looks like one for documentation purposes");
}
/**
* Sets the base-directory
*/
public void setDir(final File dir) throws BuildException {
if (this.localSet == null) {
this.localSet = new ConditionalFileSet();
this.owner.appendExceptFileSet(this.localSet);
}
this.localSet.setDir(dir);
}
/**
* Comma or space separated list of file patterns that should not be
* compiled using precompiled headers.
*
* @param includes
* the string containing the include patterns
*/
public void setIncludes(final String includes) {
if (this.localSet == null) {
this.localSet = new ConditionalFileSet();
this.owner.appendExceptFileSet(this.localSet);
}
this.localSet.setIncludes(includes);
}
}