1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

[Meson] Based on feedback from SardemFF7 set -lm requirement optional.

https://mesonbuild.com/howtox.html#add-math-library-lm-portablypdate
This commit is contained in:
Dave Davenport 2021-02-18 10:41:46 +01:00
parent 6f317b5fd9
commit f04c5361a5

View file

@ -41,7 +41,7 @@ plugins_deps = [
dependency('cairo'), dependency('cairo'),
] ]
dep_lm = c_compiler.find_library('m', required : true) dep_lm = c_compiler.find_library('m', required : false)
deps = [ deps = [
plugins_deps, plugins_deps,