summaryrefslogtreecommitdiff
path: root/macosx/llmr-app.gyp
blob: 069f5bb80f86e09e990a490d7843cde88eeffb23 (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
{
  'includes': [
    '../common.gypi',
    '../config.gypi'
  ],
  'targets': [
    {
        "target_name": "osxapp",
        "product_name": "llmr",
        "type": "executable",
        "sources": [
            "./main.mm",
            "./settings.mm",
            "./settings.hpp"
        ],
        'product_extension': 'app',
        'mac_bundle': 1,
        'mac_bundle_resources': [
          'Icon.icns',
        ],
        'link_settings': {
          'libraries': [
            '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
            '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
            '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
            '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
          ],
        },
        'xcode_settings': {
          'ARCHS': [ "x86_64" ],
          'SDKROOT': 'macosx',
          'SUPPORTED_PLATFORMS':'macosx',
          'OTHER_CPLUSPLUSFLAGS':[
            '<@(glfw3_cflags)'
          ],
          'OTHER_LDFLAGS': [
            '-stdlib=libc++',
            '<@(glfw3_libraries)',
          ],
          'SDKROOT': 'macosx',
          'INFOPLIST_FILE': 'Info.plist',
          'CLANG_CXX_LIBRARY': 'libc++',
          'CLANG_CXX_LANGUAGE_STANDARD':'c++11',
          'MACOSX_DEPLOYMENT_TARGET':'10.9',
          'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
          'CLANG_ENABLE_OBJC_ARC': 'YES'
        },
        "dependencies": [
            "../llmr.gyp:llmr-x86"
        ]
    }
  ]
}