The Meson Build System
http://mesonbuild.com/
8 lines
144 B
8 lines
144 B
5 years ago
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
if not os.path.isfile(sys.argv[1]):
|
||
|
raise Exception("Couldn't find {!r}".format(sys.argv[1]))
|