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.
16 lines
404 B
16 lines
404 B
#!/usr/bin/env python |
|
|
|
# Minimal waf script for projects that include waflib directly |
|
|
|
from waflib import Context, Scripting |
|
|
|
import inspect |
|
import os |
|
|
|
def main(): |
|
script_path = os.path.abspath(inspect.getfile(inspect.getmodule(main))) |
|
project_path = os.path.dirname(script_path) |
|
Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path) |
|
|
|
if __name__ == '__main__': |
|
main()
|
|
|