summaryrefslogtreecommitdiff
path: root/ios/llmr-app.gyp
blob: 89acc2d749d42df81548bcb08a1335ebc06c94be (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
  'includes': [
    '../common.gypi',
    '../config.gypi'
  ],
  'targets': [
    {
        "target_name": "iosapp",
        "product_name": "Mapbox GL",
        "type": "executable",
        "sources": [
            "./main.m",
            "./MBXAppDelegate.h",
            "./MBXAppDelegate.m",
            "./MBXViewController.h",
            "./MBXViewController.mm",
            '<!@(find MVKMapKit/MVKMapKit -type f -name "MVKMapView.*")',
            '<!@(find MVKMapKit/MVKMapKit -type f -name "MVKStyleFunctionValue.*")',
            '<!@(find MVKMapKit/MVKMapKit -type f -name "MVKTypes.*")',
            '<!@(find MVKMapKit/MVKMapKit -type f -name "*+MVKAdditions.*")',
            "../common/settings_nsuserdefaults.hpp",
            "../common/settings_nsuserdefaults.mm",
            "../common/foundation_request.h",
            "../common/foundation_request.mm",
        ],
        'product_extension': 'app',
        'mac_bundle': 1,
        'mac_bundle_resources': [
          '<!@(find img -type f)',
          '<!@(find MVKMapKit/MVKMapKit/Resources -type f)',
          '<(SHARED_INTERMEDIATE_DIR)/bin/style.min.js'
        ],
        '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/CoreLocation.framework',
            '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework'
          ],
        },
        'xcode_settings': {
          'SDKROOT': 'iphoneos',
          'SUPPORTED_PLATFORMS':['iphonesimulator','iphoneos'],
          'ARCHS': [ "armv7", "armv7s", "arm64", "i386" ],
          'INFOPLIST_FILE': 'Info.plist',
          'CLANG_CXX_LIBRARY': 'libc++',
          'CLANG_CXX_LANGUAGE_STANDARD':'c++11',
          'IPHONEOS_DEPLOYMENT_TARGET':'7.0',
          'TARGETED_DEVICE_FAMILY': '1,2',
          'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
          'CLANG_ENABLE_OBJC_ARC': 'YES'
        },
        'configurations': {
          'Debug': {
            'xcode_settings': {
              'CODE_SIGN_IDENTITY': 'iPhone Developer',
            }
          },
          'Release': {
            'xcode_settings': {
              'CODE_SIGN_IDENTITY': 'iPhone Distribution',
            }
          }
        },
        "dependencies": [
            "../llmr.gyp:llmr-ios"
        ]
    }
  ]
}