Skip to content

Commit

Permalink
Merge pull request #305 from neheb/meso
Browse files Browse the repository at this point in the history
meson: move to root + cleanups
  • Loading branch information
nhorman authored Apr 1, 2024
2 parents 35ede08 + 2e1bf90 commit 10eac3a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ glib_dep = dependency('glib-2.0')
m_dep = cc.find_library('m', required: false)
capng_dep = dependency('libcap-ng', required: get_option('capng'))
ncurses_dep = dependency('curses', required: get_option('ui'))
numa_dep = dependency('numa', required: get_option('numa'))
numa_dep = cc.find_library('numa', required: get_option('numa'))
libnl_3_dep = dependency('libnl-3.0', required: get_option('thermal'))
libnl_genl_3_dep = dependency('libnl-genl-3.0', required: get_option('thermal'))
systemd_dep = dependency('libsystemd', required: get_option('systemd'))
Expand Down Expand Up @@ -40,7 +40,7 @@ if cdata.get('HAVE_IRQBALANCEUI')
install_man('irqbalance-ui.1')
endif

irqbalance_sources = [
irqbalance_sources = files(
'activate.c',
'bitmap.c',
'classify.c',
Expand All @@ -50,12 +50,12 @@ irqbalance_sources = [
'numa.c',
'placement.c',
'procinterrupts.c',
]
)

if libnl_3_dep.found() and libnl_genl_3_dep.found()
irqbalance_sources += [
irqbalance_sources += files(
'thermal.c',
]
)
endif

executable(
Expand Down

0 comments on commit 10eac3a

Please sign in to comment.