fix: build fails with meson < 0.53.0
meson.build:12:0: ERROR: Module "fs" does not exist Fixes #909pull/924/head
parent
05b12602d4
commit
85e00b2aab
|
@ -2,6 +2,7 @@ project(
|
||||||
'waybar', 'cpp', 'c',
|
'waybar', 'cpp', 'c',
|
||||||
version: '0.9.4',
|
version: '0.9.4',
|
||||||
license: 'MIT',
|
license: 'MIT',
|
||||||
|
meson_version: '>= 0.49.0',
|
||||||
default_options : [
|
default_options : [
|
||||||
'cpp_std=c++17',
|
'cpp_std=c++17',
|
||||||
'buildtype=release',
|
'buildtype=release',
|
||||||
|
@ -9,8 +10,6 @@ project(
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
fs = import('fs')
|
|
||||||
|
|
||||||
compiler = meson.get_compiler('cpp')
|
compiler = meson.get_compiler('cpp')
|
||||||
|
|
||||||
cpp_args = []
|
cpp_args = []
|
||||||
|
@ -318,9 +317,9 @@ if scdoc.found()
|
||||||
|
|
||||||
foreach file : man_files
|
foreach file : man_files
|
||||||
path = '@0@'.format(file)
|
path = '@0@'.format(file)
|
||||||
basename = fs.name(path)
|
basename = path.split('/')[-1]
|
||||||
|
|
||||||
topic = basename.split('.')[-3].split('/')[-1]
|
topic = basename.split('.')[-3]
|
||||||
section = basename.split('.')[-2]
|
section = basename.split('.')[-2]
|
||||||
output = '@0@.@1@'.format(topic, section)
|
output = '@0@.@1@'.format(topic, section)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue