~hjd/ubuntu/wily/gyp/debian-merged

« back to all changes in this revision

Viewing changes to test/ios/app-bundle/test.gyp

  • Committer: Hans Joachim Desserud
  • Date: 2015-10-31 12:46:59 UTC
  • mfrom: (6.2.6 sid)
  • Revision ID: hans_joachim_desserud-20151031124659-lzxekr6woskh4k0b
Merge latest Debian version

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
      'target_name': 'test_app',
16
16
      'product_name': 'Test App Gyp',
17
17
      'type': 'executable',
18
 
      'product_extension': 'bundle',
19
 
      'mac_bundle': 1,
20
 
      'sources': [
21
 
        'TestApp/main.m',
22
 
      ],
23
 
      'mac_bundle_resources': [
24
 
        'TestApp/English.lproj/InfoPlist.strings',
25
 
        'TestApp/English.lproj/MainMenu.xib',
26
 
      ],
27
 
      'link_settings': {
28
 
        'libraries': [
29
 
          '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
30
 
          '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
31
 
        ],
32
 
      },
33
 
      'xcode_settings': {
34
 
        'OTHER_CFLAGS': [
35
 
          '-fobjc-abi-version=2',
36
 
        ],
37
 
        'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist',
38
 
        'SDKROOT': 'iphonesimulator',  # -isysroot
39
 
        'IPHONEOS_DEPLOYMENT_TARGET': '4.2',
 
18
      'mac_bundle': 1,
 
19
      'sources': [
 
20
        'TestApp/main.m',
 
21
      ],
 
22
      'mac_bundle_resources': [
 
23
        'TestApp/English.lproj/InfoPlist.strings',
 
24
        'TestApp/English.lproj/MainMenu.xib',
 
25
        'TestApp/English.lproj/Main_iPhone.storyboard',
 
26
      ],
 
27
      'link_settings': {
 
28
        'libraries': [
 
29
          '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
 
30
          '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
 
31
        ],
 
32
      },
 
33
      'xcode_settings': {
 
34
        'OTHER_CFLAGS': [
 
35
          '-fobjc-abi-version=2',
 
36
        ],
 
37
        'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist',
 
38
        'SDKROOT': 'iphonesimulator',  # -isysroot
 
39
        'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
 
40
        'CONFIGURATION_BUILD_DIR':'build/Default',
 
41
      },
 
42
    },
 
43
    {
 
44
      'target_name': 'test_app_xml',
 
45
      'product_name': 'Test App Gyp XML',
 
46
      'type': 'executable',
 
47
      'mac_bundle': 1,
 
48
      'sources': [
 
49
        'TestApp/main.m',
 
50
      ],
 
51
      'mac_bundle_resources': [
 
52
        'TestApp/English.lproj/InfoPlist.strings',
 
53
        'TestApp/English.lproj/MainMenu.xib',
 
54
        'TestApp/English.lproj/Main_iPhone.storyboard',
 
55
      ],
 
56
      'link_settings': {
 
57
        'libraries': [
 
58
          '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
 
59
          '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
 
60
        ],
 
61
      },
 
62
      'xcode_settings': {
 
63
        'OTHER_CFLAGS': [
 
64
          '-fobjc-abi-version=2',
 
65
        ],
 
66
        'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist',
 
67
        'INFOPLIST_OUTPUT_FORMAT':'xml',
 
68
        'SDKROOT': 'iphonesimulator',  # -isysroot
 
69
        'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
40
70
        'CONFIGURATION_BUILD_DIR':'build/Default',
41
71
      },
42
72
    },