#!python
"""
Transform compile_commands.json taken from an ArduPilot, 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_ap

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

