com.github.maven_nar.SysLib Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nar-maven-plugin Show documentation
Show all versions of nar-maven-plugin Show documentation
This plugin compiles native code and publishes native artifacts in the form of nar files.
/*
* #%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;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.tools.ant.Project;
import com.github.maven_nar.cpptasks.CUtil;
import com.github.maven_nar.cpptasks.types.LibraryTypeEnum;
import com.github.maven_nar.cpptasks.types.SystemLibrarySet;
/**
* Keeps info on a system library
*
* @author Mark Donszelmann
*/
public class SysLib {
/**
* Name of the system library
*/
@Parameter(required = true)
private String name;
/**
* Type of linking for this system library
*/
@Parameter(defaultValue = "shared")
private String type = Library.SHARED;
public final SystemLibrarySet getSysLibSet(final Project antProject) throws MojoFailureException {
if (this.name == null) {
throw new MojoFailureException("NAR: Please specify as part of ");
}
final SystemLibrarySet sysLibSet = new SystemLibrarySet();
sysLibSet.setProject(antProject);
sysLibSet.setLibs(new CUtil.StringArrayBuilder(this.name));
final LibraryTypeEnum sysLibType = new LibraryTypeEnum();
sysLibType.setValue(this.type);
sysLibSet.setType(sysLibType);
return sysLibSet;
}
@Override
public String toString() {
return this.name + " (" + this.type + ")";
}
}