Examples of MsvcCCompiler


Examples of com.github.maven_nar.cpptasks.msvc.MsvcCCompiler

public class TestMsvcCCompiler extends TestCase {
    public TestMsvcCCompiler(String name) {
        super(name);
    }
    public void testDebug() {
        MsvcCCompiler compiler = MsvcCCompiler.getInstance();
        Vector args = new Vector();
        compiler.addDebugSwitch(args);
        assertEquals(4, args.size());
        assertEquals("/Zi", args.elementAt(0));
        assertEquals("/Od", args.elementAt(1));
        assertEquals("/RTC1", args.elementAt(2));
        assertEquals("/D_DEBUG", args.elementAt(3));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.