diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-08-27 21:01:21 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-08-27 21:01:21 +0300 |
| commit | 7ff0873b077407099b435133bf5193cd481b02bc (patch) | |
| tree | 9076e52d321083434603ac8f8781f8a08e1b3bbe /dependencies.py | |
| parent | ee4a71f77c33c37d2942a9b87592b3c6cbbc3d5c (diff) | |
| download | meson-7ff0873b077407099b435133bf5193cd481b02bc.tar.gz | |
Add OpenGL link args on Windows.
Diffstat (limited to 'dependencies.py')
| -rw-r--r-- | dependencies.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dependencies.py b/dependencies.py index 08fb864b4..d47dac8b7 100644 --- a/dependencies.py +++ b/dependencies.py @@ -902,6 +902,7 @@ class GLDependency(Dependency): return if mesonlib.is_windows(): self.is_found = True + self.linkargs = ['-lopengl32'] return def get_link_args(self): |
