Ejemplo n.º 1
0
        public void Init(string path)
        {
            m_path = path;

            string makefile = Path.Combine(m_path, "Makefile");
            if (!File.Exists(makefile))
                DoCreateMakefile(makefile);

            string plist = Path.Combine(m_path, "Info.plist");
            if (!File.Exists(plist))
                DoCreatePlist(plist);

            Boss boss = ObjectModel.Create("MakeBuilder");
            m_make = boss.Get<IBuilder>();
            m_make.Init(makefile);
        }