#!/usr/bin/env python
import os
def main():
if not os.path.exists("build"):
os.makedirs("build")
if __name__ == '__main__':
main()