Yoga.podspec.json 1.02 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
{
  "name": "Yoga",
  "version": "1.14.0",
  "license": {
    "type": "MIT"
  },
  "homepage": "https://yogalayout.com",
  "documentation_url": "https://yogalayout.com/docs/",
  "summary": "Yoga is a cross-platform layout engine which implements Flexbox.",
  "description": "Yoga is a cross-platform layout engine enabling maximum collaboration within your team by implementing an API many designers are familiar with, and opening it up to developers across different platforms.",
  "authors": "Facebook",
  "source": {
    "git": "https://github.com/facebook/react-native.git",
    "tag": "v0.62.2"
  },
  "module_name": "yoga",
  "header_dir": "yoga",
  "requires_arc": false,
  "pod_target_xcconfig": {
    "DEFINES_MODULE": "YES"
  },
  "compiler_flags": [
    "-fno-omit-frame-pointer",
    "-fexceptions",
    "-Wall",
    "-Werror",
    "-std=c++1y",
    "-fPIC"
  ],
  "platforms": {
    "ios": "9.0",
    "tvos": "9.2"
  },
  "source_files": "yoga/**/*.{cpp,h}",
  "public_header_files": "yoga/{Yoga,YGEnums,YGMacros,YGValue}.h"
}