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.
12 lines
306 B
12 lines
306 B
2 years ago
|
import sys
|
||
|
import json
|
||
|
import typing as T
|
||
|
from . import meson_exe
|
||
|
|
||
|
# This script is used by run_unittests.py to verify we don't load too many
|
||
|
# modules when executing a wrapped command.
|
||
|
def run(args: T.List[str]) -> int:
|
||
|
meson_exe.run(args)
|
||
|
print(json.dumps(list(sys.modules.keys())))
|
||
|
return 0
|