aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies
diff options
context:
space:
mode:
authorapoorv569 <53279454+apoorv569@users.noreply.github.com>2022-02-10 19:39:47 +0000
committerDylan Baker <dylan@pnwbakers.com>2022-02-14 15:48:55 -0800
commitbab651a7a03b48ff909a49eabe2dbcef0e821496 (patch)
tree0e57bb51121f83d962949a8ecd0c550427988e0d /mesonbuild/dependencies
parentd37002a5f54b08e1bd6c3f7182e47d941b60137b (diff)
downloadmeson-bab651a7a03b48ff909a49eabe2dbcef0e821496.zip
meson-bab651a7a03b48ff909a49eabe2dbcef0e821496.tar.gz
meson-bab651a7a03b48ff909a49eabe2dbcef0e821496.tar.bz2
Add wx-config-3.1 provided by mingw-w64-x86_64-wxmsw3.1
On Windows using MSYS2 MinGW installing the package `mingw-w64-x86_64-wxmsw3.1` provides `wx-config-3.1`. I have tried building my software by making this exact change and it build correctly.
Diffstat (limited to 'mesonbuild/dependencies')
-rw-r--r--mesonbuild/dependencies/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py
index 530a101..18b7bff 100644
--- a/mesonbuild/dependencies/ui.py
+++ b/mesonbuild/dependencies/ui.py
@@ -145,7 +145,7 @@ class SDL2DependencyConfigTool(ConfigToolDependency):
class WxDependency(ConfigToolDependency):
- tools = ['wx-config-3.0', 'wx-config', 'wx-config-gtk3']
+ tools = ['wx-config-3.0', 'wx-config-3.1', 'wx-config', 'wx-config-gtk3']
tool_name = 'wx-config'
def __init__(self, environment: 'Environment', kwargs: T.Dict[str, T.Any]):