mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-09 20:52:45 +01:00
1de339dfbc
This adds DEF file names in meson. Without the DEF files, every functions are exproted from plugins.
10 lines
225 B
Meson
10 lines
225 B
Meson
winsparkle_dep = cc.find_library('WinSparkle')
|
|
|
|
shared_module('upd', 'upd.c',
|
|
dependencies: [winsparkle_dep, hexchat_plugin_dep],
|
|
install: true,
|
|
install_dir: plugindir,
|
|
name_prefix: '',
|
|
vs_module_defs: 'upd.def',
|
|
)
|