File: meson.build

package info (click to toggle)
hexchat 3.0.0-0.1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 12,028 kB
  • sloc: ansic: 61,043; xml: 3,988; perl: 1,144; python: 885; cs: 589; cpp: 307; sh: 130; makefile: 25
file content (23 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if not libssl_dep.found()
  error('fish plugin requires openssl')
endif

# Run tests
subdir('tests')

fishlim_sources = [
  'dh1080.c',
  'fish.c',
  'utils.c',
  'irc.c',
  'keystore.c',
  'plugin_hexchat.c'
]

shared_module('fishlim', fishlim_sources,
  dependencies: [libgio_dep, hexchat_plugin_dep, libssl_dep],
  install: true,
  install_dir: plugindir,
  name_prefix: '',
  vs_module_defs: 'fishlim.def',
)