export.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # Copyright (c) 2020 Nordic Semiconductor ASA
  2. #
  3. # SPDX-License-Identifier: Apache-2.0
  4. import argparse
  5. from pathlib import Path
  6. from shutil import rmtree
  7. from shutil import copy
  8. from west.commands import WestCommand
  9. from west import log
  10. from zcmake import run_cmake
  11. EXPORT_DESCRIPTION = '''\
  12. This command registers the current Zephyr installation as a CMake
  13. config package in the CMake user package registry.
  14. In Windows, the CMake user package registry is found in:
  15. HKEY_CURRENT_USER\\Software\\Kitware\\CMake\\Packages\\
  16. In Linux and MacOS, the CMake user package registry is found in:
  17. ~/.cmake/packages/'''
  18. class ZephyrExport(WestCommand):
  19. def __init__(self):
  20. super().__init__(
  21. 'zephyr-export',
  22. # Keep this in sync with the string in west-commands.yml.
  23. 'export Zephyr installation as a CMake config package',
  24. EXPORT_DESCRIPTION,
  25. accepts_unknown_args=False)
  26. def do_add_parser(self, parser_adder):
  27. parser = parser_adder.add_parser(
  28. self.name,
  29. help=self.help,
  30. formatter_class=argparse.RawDescriptionHelpFormatter,
  31. description=self.description)
  32. return parser
  33. def do_run(self, args, unknown_args):
  34. # The 'share' subdirectory of the top level zephyr repository.
  35. share = Path(__file__).parents[2] / 'share'
  36. run_cmake_export(share / 'zephyr-package' / 'cmake')
  37. run_cmake_export(share / 'zephyrunittest-package' / 'cmake')
  38. # Export build script to top directory
  39. script = Path(__file__).parents[2] / 'build.cmd'
  40. run_script_export(script)
  41. script = Path(__file__).parents[2] / 'build.sh'
  42. run_script_export(script)
  43. def run_script_export(path):
  44. if path.exists() == True:
  45. topfile = path.parents[1] / path.name
  46. copy(path, topfile)
  47. def run_cmake_export(path):
  48. # Run a package installation script.
  49. #
  50. # Filtering out lines that start with -- ignores the normal
  51. # CMake status messages and instead only prints the important
  52. # information.
  53. lines = run_cmake(['-P', str(path / 'zephyr_export.cmake')],
  54. capture_output=True)
  55. msg = [line for line in lines if not line.startswith('-- ')]
  56. log.inf('\n'.join(msg))
  57. def remove_if_exists(pathobj):
  58. if pathobj.is_file():
  59. log.inf(f'- removing: {pathobj}')
  60. pathobj.unlink()
  61. elif pathobj.is_dir():
  62. log.inf(f'- removing: {pathobj}')
  63. rmtree(pathobj)