The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
367 B
20 lines
367 B
# SPDX-License-Identifier: Apache-2.0 |
|
# Copyright 2012-2021 The Meson development team |
|
|
|
from .base import ArLikeLinker, RSPFileSyntax |
|
from .detect import ( |
|
defaults, |
|
guess_win_linker, |
|
guess_nix_linker, |
|
) |
|
|
|
__all__ = [ |
|
# base.py |
|
'ArLikeLinker', |
|
'RSPFileSyntax', |
|
|
|
# detect.py |
|
'defaults', |
|
'guess_win_linker', |
|
'guess_nix_linker', |
|
]
|
|
|