summaryrefslogtreecommitdiffstats
path: root/lib/lib.gyp
blob: fee379de28e627efa899324acd803bd1b9a1e7a7 (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
{
  'targets': [
  {
    'target_name': 'blinq',
      'type': 'shared_library',
      'includes': [
        '../blinq.gypi',
      ],
      'sources': [
        'blinqpage.cpp',
        'blinqpage.h',
      ],
      'libraries': [
        '-lQt5Core',
        '-lQt5Gui',
      ],
      'ldflags': [
        '-L<(qt_libdir)',
        '-Wl,-rpath,<(qt_libdir)',
      ],
      'cflags': [
        '-DQT_NO_KEYWORDS',
      ],
      'include_dirs': [
        '<(qt_headers)',
        '<(qt_headers)/QtCore',
        '<(qt_headers)/QtGui',
        '<(qt_headers)/QtGui/5.2.0/QtGui',
      ],
  },
    ],
}