Example #1
0
 public void fGetSubLibCompilerData(ArgumentManager _oArg = null)
 {
     if (sCurrFolder != "")
     {
         foreach (ModuleData _oModule in aSubLib)
         {
             //   _oModule.sCurrFolder = sCurrFolder + _oModule.sSubPath + "/Lib_" +_oModule.sName + "/";
             _oModule.sCurrFolder = _oModule.sSubPath;
             // if (Directory.Exists() ) {
             _oModule.fGetCompilerList();
             if (_oArg != null)
             {
                 _oModule.oLibData.fExtract(_oArg);
             }
             // }
             // oParent.fAddLib(_oModule.oLibData);
             //o
         }
     }
 }
Example #2
0
 public CppSeq(ArgumentManager _oParent, string _sSeq)
 {
     oParent = _oParent;
     sSeq    = _sSeq;
 }
Example #3
0
 public static void fSetVar(ArgumentManager _oArg, string _sCmd, string _sMainValue, bool _bAssingOnEmpty = false)
 {
     _oArg.fSetVar(_sCmd, _sMainValue, _bAssingOnEmpty);
 }