tcpthecode / google-toolbox-for-mac

Google Toolbox for Mac

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GTM: Google Toolbox for Mac

Project site https://github.com/google/google-toolbox-for-mac
Discussion group http://groups.google.com/group/google-toolbox-for-mac

Google Toolbox for Mac

A collection of source from different Google projects that may be of use to developers working other iOS or OS X projects.

If you find a problem/bug or want a new feature to be included in the Google Toolbox for Mac, please join the discussion group or submit an issue.

Bazel Support

Google Toolbox for Mac can be consumed via Bazel, to do so add the following to your WORKSPACE File:

GTM_GIT_SHA = "SOME_SHA"
http_archive(
    name = "google_toolbox_for_mac",
    urls = [
        "https://github.com/google/google-toolbox-for-mac/archive/%s.zip" % GTM_GIT_SHA
    ],
    strip_prefix = "google-toolbox-for-mac-%s" % GTM_GIT_SHA
)

load(
    "@google_toolbox_for_mac//bazel_support:repositories.bzl",
    "google_toolbox_for_mac_rules_dependencies",
)

google_toolbox_for_mac_rules_dependencies()

About

Google Toolbox for Mac

License:Apache License 2.0


Languages

Language:Objective-C 92.5%Language:C 3.3%Language:Shell 1.9%Language:Starlark 1.0%Language:Objective-C++ 0.7%Language:Ruby 0.6%