#!python
"""
Transform compile_commands.json taken from a PX4 build, by making it
appear as if the build was performed in the root, minimizing the
significance of the build/<config> directory.This makes ccls and lsp
work more smoothly.

Copyright 2019 Nik Langrind.
SPDX-License-Identifier: MIT
"""

import sys
from ccjtools import ccj_xform_px4

if __name__ == '__main__':
    sys.exit(ccj_xform_px4.main(sys.argv))

