summaryrefslogtreecommitdiff
path: root/ios/llmr-app.gyp
blob: f812eb1d7ea6a7fa6ecf81e5071817e1957c09cd (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  'includes': [
    '../common.gypi',
    '../config.gypi'
  ],
  'targets': [
    {
        "target_name": "iosapp",
        "product_name": "llmr",
        "type": "executable",
        "sources": [
            "./main.m",
            "./MBXAppDelegate.m",
            "./MBXSettings.mm",
            "./MBXViewController.mm"
        ],
        'product_extension': 'app',
        'mac_bundle': 1,
        'mac_bundle_resources': [
          '<!@(find img -type f)'
        ],
        'link_settings': {
          'libraries': [
            '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
            '$(SDKROOT)/System/Library/Frameworks/OpenGLES.framework',
            '$(SDKROOT)/System/Library/Frameworks/GLKit.framework',
            '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework'
          ],
        },
        'xcode_settings': {
          'ARCHS': [ "armv7", "armv7s", "arm64" ],
          'SUPPORTED_PLATFORMS': [ 'iphoneos', 'iphonesimulator' ],
          'OTHER_LDFLAGS': [
            '-stdlib=libc++'
          ],
          'SDKROOT': 'iphoneos',
          'INFOPLIST_FILE': 'Info.plist',
          'CLANG_CXX_LIBRARY': 'libc++',
          'CLANG_CXX_LANGUAGE_STANDARD':'c++11',
          'IPHONEOS_DEPLOYMENT_TARGET':'5.0',
          'TARGETED_DEVICE_FAMILY': '1,2',
          'CODE_SIGN_IDENTITY': 'iPhone Developer',
          'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
          'CLANG_ENABLE_OBJC_ARC': 'YES'
        },
        "dependencies": [
            "../llmr.gyp:llmr-ios"
        ]
    }
  ]
}