1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 10:50:58 +01:00
esphome/script/build_compile_commands.py

17 lines
281 B
Python
Raw Normal View History

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