mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-08 12:12:39 +01:00
1de339dfbc
This adds DEF file names in meson. Without the DEF files, every functions are exproted from plugins.
62 lines
1.5 KiB
Meson
62 lines
1.5 KiB
Meson
sysinfo_sources = [
|
|
'format.c',
|
|
'sysinfo.c',
|
|
]
|
|
|
|
sysinfo_deps = [
|
|
libgio_dep,
|
|
hexchat_plugin_dep,
|
|
common_sysinfo_deps,
|
|
]
|
|
|
|
sysinfo_includes = []
|
|
sysinfo_cargs = []
|
|
|
|
system = host_machine.system()
|
|
if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system == 'darwin' or system == 'freebsd'
|
|
sysinfo_includes += 'shared'
|
|
sysinfo_sources += [
|
|
'shared/df.c'
|
|
]
|
|
|
|
if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system == 'freebsd'
|
|
libpci = dependency('libpci', required: false, method: 'pkg-config')
|
|
if libpci.found()
|
|
sysinfo_deps += libpci
|
|
sysinfo_cargs += '-DHAVE_LIBPCI'
|
|
sysinfo_sources += 'unix/pci.c'
|
|
|
|
picidsdir = libpci.get_pkgconfig_variable('idsdir')
|
|
pciids = join_paths(picidsdir, 'pci.ids')
|
|
sysinfo_cargs += '-DPCIIDS_FILE="@0@"'.format(pciids)
|
|
endif
|
|
sysinfo_includes += 'unix'
|
|
sysinfo_sources += [
|
|
'unix/backend.c',
|
|
'unix/match.c',
|
|
'unix/parse.c',
|
|
]
|
|
elif system == 'darwin'
|
|
add_languages('objc')
|
|
sysinfo_sources += 'osx/backend.m'
|
|
endif
|
|
|
|
elif system == 'windows'
|
|
sysinfo_sources += [
|
|
'win32/backend.c',
|
|
'../../src/common/sysinfo/win32/backend.c'
|
|
]
|
|
else
|
|
error('sysinfo: Unknown system?')
|
|
endif
|
|
|
|
shared_module('sysinfo', sysinfo_sources,
|
|
dependencies: sysinfo_deps,
|
|
include_directories: include_directories(sysinfo_includes),
|
|
c_args: sysinfo_cargs,
|
|
install: true,
|
|
install_dir: plugindir,
|
|
name_prefix: '',
|
|
vs_module_defs: 'sysinfo.def',
|
|
)
|