meson: remove cppfs dependency
The dependency on the c++fs library is something very old from the C++14
era and is no longer necessary with a modern compiler. Remove the
explicit dependency from the meson setup.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I70d6811eb4afe7bf954b940b6fcf7759c6781c04
diff --git a/meson.build b/meson.build
index 79f4850..787884f 100644
--- a/meson.build
+++ b/meson.build
@@ -13,7 +13,6 @@
build_tests = get_option('tests')
-cppfs = meson.get_compiler('cpp').find_library('stdc++fs')
gmock = dependency('gmock', disabler: true, required: build_tests)
gtest = dependency('gtest', main: true, disabler: true, required: build_tests)
phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
@@ -49,7 +48,6 @@
'pmbus.cpp',
'utility.cpp',
dependencies: [
- cppfs,
phosphor_dbus_interfaces,
phosphor_logging,
sdbusplus,