diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-11-05 20:07:21 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-11-08 00:44:45 +0200 |
| commit | 46788d1b5bb72f59cc931e54912c81666ce30f84 (patch) | |
| tree | e3438d1a7f68a9a1518f672a167f57b514cd5679 /mesonbuild/modules/__init__.py | |
| parent | 48a719033ee6f1626a8878f66a43ee939dad4c62 (diff) | |
| download | meson-46788d1b5bb72f59cc931e54912c81666ce30f84.tar.gz | |
Created the filesystem module.
Diffstat (limited to 'mesonbuild/modules/__init__.py')
| -rw-r--r-- | mesonbuild/modules/__init__.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mesonbuild/modules/__init__.py b/mesonbuild/modules/__init__.py index 6b6aa8ba9..dc3c7865c 100644 --- a/mesonbuild/modules/__init__.py +++ b/mesonbuild/modules/__init__.py @@ -1,3 +1,20 @@ +# Copyright 2019 The Meson development team + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This file contains the detection logic for external dependencies that +# are UI-related. + import os from .. import build |
