Package com.github.maven_nar.cpptasks

Examples of com.github.maven_nar.cpptasks.LinkerEnum


            throw new MojoFailureException( "NAR: Please specify a <Name> as part of <Linker>" );
        }

        LinkerDef linker = new LinkerDef();
        linker.setProject( antProject );
        LinkerEnum linkerEnum = new LinkerEnum();
        linkerEnum.setValue( name );
        linker.setName( linkerEnum );

        // tool path
        if ( toolPath != null )
        {
View Full Code Here


     * Test checks that enumeration contains value g++
     *
     * See patch [ 676276 ] Enhanced support for Mac OS X
     */
    public void testContainsValueGpp() {
        assertTrue(new LinkerEnum().containsValue("g++"));
    }
View Full Code Here

   * @param name
   *            linker name
   */
  private static void setLinkerName(final LinkerDef linker,
                                    final String name) {
    LinkerEnum linkerName = new LinkerEnum();
    linkerName.setValue(name);
    linker.setName(linkerName);
  }
View Full Code Here

   * @param name
   *            linker name
   */
  private static void setLinkerName(final LinkerDef linker,
                                    final String name) {
    LinkerEnum linkerName = new LinkerEnum();
    linkerName.setValue(name);
    linker.setName(linkerName);
  }
View Full Code Here

     * Test checks that enumeration contains value g++
     *
     * See patch [ 676276 ] Enhanced support for Mac OS X
     */
    public void testContainsValueGpp() {
        assertTrue(new LinkerEnum().containsValue("g++"));
    }
View Full Code Here

TOP

Related Classes of com.github.maven_nar.cpptasks.LinkerEnum

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.