Add a Meson wrap for ghc::filesystem

Which can replace Boost.Filesystem for us so we can get rid of the
runtime dependency.
This commit is contained in:
Robbert van der Helm
2022-04-10 17:48:19 +02:00
parent 45e5b06099
commit 49b2ad46ab
4 changed files with 17 additions and 0 deletions
+2
View File
@@ -3,10 +3,12 @@
# The above pattern doesn't match submodules
/bitsery
/function2
/ghc_filesystem
/tomlplusplus
/vst3
# And we obviously don't want to ignore our overlays
!/packagefiles/bitsery
!/packagefiles/function2
!/packagefiles/ghc_filesystem
!/function2-patch/*
+9
View File
@@ -0,0 +1,9 @@
[wrap-git]
url = https://github.com/gulrak/filesystem.git
# This is tag v1.5.12
revision = cd6805e94dd5d6346be1b75a54cdc27787319dd2
depth = 1
patch_directory = ghc_filesystem
[provide]
ghc_filesystem = ghc_filesystem_dep
@@ -0,0 +1,3 @@
project('ghc_filesystem', 'cpp', version : '1.5.2')
ghc_filesystem_dep = declare_dependency(include_directories : include_directories('include'))