예제 #1
0
 public override bool Execute()
 {
     CallCompiler c = new CallCompiler(SourceFile,comptype);
     if (c.failed)
     {
         this.Log.LogError("Compilation failed for filename " + c.filename);
         this.Log.LogError(c.output);
         return false;
     }
     return true;
 }
예제 #2
0
        public override bool Execute()
        {
            CallCompiler c = new CallCompiler(SourceFile, comptype);

            if (c.failed)
            {
                this.Log.LogError("Compilation failed for filename " + c.filename);
                this.Log.LogError(c.output);
                return(false);
            }
            return(true);
        }