Examples of Msvc2005CCompiler


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

public class TestMsvc2005CCompiler extends TestCase {
    public TestMsvc2005CCompiler(String name) {
        super(name);
    }
    public void testDebug() {
        Msvc2005CCompiler compiler = Msvc2005CCompiler.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.