コード例 #1
0
ファイル: core.py プロジェクト: shilang/buildc
    def config_make(cmode,
                    force_update,
                    lib_root_path=None,
                    project_root_path=None):
        result = Cache.check_consistency()
        if result == False:
            return result

        return Makerules.config_make(cmode, force_update, lib_root_path,
                                     project_root_path)
コード例 #2
0
ファイル: core.py プロジェクト: bigwhite/buildc
    def pack_source(cmode, tag, force_update, component):
        result = Cache.check_consistency()
        if result == False:
            return result

        return Pack.pack_source(cmode, tag, force_update, component)
コード例 #3
0
ファイル: core.py プロジェクト: bigwhite/buildc
    def pack_build(cmode, tag, force_update):
        result = Cache.check_consistency()
        if result == False:
            return result

        return Pack.pack_build(cmode, tag, force_update)
コード例 #4
0
ファイル: core.py プロジェクト: bigwhite/buildc
    def config_make(cmode, force_update, lib_root_path = None, project_root_path = None):
        result = Cache.check_consistency()
        if result == False:
            return result

        return Makerules.config_make(cmode, force_update, lib_root_path, project_root_path)
コード例 #5
0
ファイル: core.py プロジェクト: shilang/buildc
    def pack_build(cmode, tag, force_update):
        result = Cache.check_consistency()
        if result == False:
            return result

        return Pack.pack_build(cmode, tag, force_update)
コード例 #6
0
ファイル: core.py プロジェクト: shilang/buildc
    def pack_source(cmode, tag, force_update, component):
        result = Cache.check_consistency()
        if result == False:
            return result

        return Pack.pack_source(cmode, tag, force_update, component)