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.
15 lines
378 B
15 lines
378 B
#!/usr/bin/env python3 |
|
# SPDX-License-Identifier: Apache-2.0 |
|
# Copyright 2021 The Meson development team |
|
|
|
# Hack to make relative imports to mlog possible |
|
from pathlib import Path |
|
import sys |
|
root = Path(__file__).absolute().parents[1] |
|
sys.path.insert(0, str(root)) |
|
|
|
# Now run the actual code |
|
from refman.main import main |
|
|
|
if __name__ == '__main__': |
|
raise SystemExit(main())
|
|
|