summaryrefslogtreecommitdiff
path: root/linux/llmr-app.gyp
blob: 06d7ed822efbb70300129e812240df11b2779c13 (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
{
  'includes': [
    '../common.gypi',
    '../config.gypi'
  ],
  'targets': [
    {
        "target_name": "linuxapp",
        "product_name": "llmr",
        "type": "executable",
        "sources": [
            "./main.cpp",
            "./settings.cpp",
            "./settings.hpp"
        ],
        'product_extension': 'app',
        'link_settings': {
          'libraries': [
            '<@(glfw3_libraries)',
            '-lcurl'
          ],
        },
        'cflags': [
            '<@(png_cflags)',
            '<@(glfw3_cflags)'
        ],
        "dependencies": [
            "../llmr.gyp:llmr-x86"
        ]
    }
  ]
}