Skip to content
This repository has been archived by the owner on Feb 10, 2024. It is now read-only.

build: perl as a dependency in meson.build #2155

Merged
merged 1 commit into from Mar 26, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions plugins/perl/meson.build
Expand Up @@ -76,11 +76,14 @@ int main(void) {
error('found perl not suitable for plugin')
endif

perl_dep = declare_dependency(
compile_args: perl_cflags,
link_args: perl_ldflags
)

shared_module('perl',
sources: ['perl.c', hexchat_perl_module, irc_perl_module],
dependencies: [libgio_dep, hexchat_plugin_dep],
c_args: perl_cflags,
link_args: perl_ldflags,
dependencies: [libgio_dep, hexchat_plugin_dep, perl_dep],
install: true,
install_dir: plugindir,
install_rpath: perl_rpath,
Expand Down