* Change code layout to a flat layout * Remove pyright configuration * Add watchinotify as optional dependency to use the watch option * Fix watch option to watch for all dependencies (headers)
12 lines
136 B
Python
12 lines
136 B
Python
#! python3
|
|
|
|
from umake import make, Config
|
|
|
|
|
|
def main():
|
|
config = Config()
|
|
make(config)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|