aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r--mesonbuild/environment.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index d21c6cc..d06436b 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -12,15 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import os
-import platform
-import re
+import configparser, os, platform, re, shlex, shutil
from .compilers import *
+from .linkers import ArLinker, VisualStudioLinker
from .mesonlib import EnvironmentException, Popen_safe
-import configparser
-import shlex
-import shutil
build_filename = 'meson.build'