esphome/script/build_compile_commands.py

17 lines
281 B
Python
Raw Normal View History

#!/usr/bin/env python3
2019-05-08 09:58:03 +02:00
import sys
import os.path
2019-05-08 09:58:03 +02:00
sys.path.append(os.path.dirname(__file__))
from helpers import build_all_include, build_compile_commands
2019-05-08 09:58:03 +02:00
def main():
2019-05-08 10:17:08 +02:00
build_all_include()
2019-05-08 09:58:03 +02:00
build_compile_commands()
print("Done.")
if __name__ == "__main__":
2019-05-08 09:58:03 +02:00
main()