cfb.cmake 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # SPDX-License-Identifier: Apache-2.0
  2. # These functions can be used to generate a CFB font include file from
  3. # a TrueType/OpenType font file or an image file.
  4. function(generate_cfb_font
  5. input_file # The TrueType/OpenType font file or the image file
  6. output_file # The generated header file
  7. width # Width of the CFB font elements in pixels
  8. height # Height of the CFB font elements in pixels
  9. )
  10. add_custom_command(
  11. OUTPUT ${output_file}
  12. COMMAND
  13. ${PYTHON_EXECUTABLE}
  14. ${ZEPHYR_BASE}/scripts/gen_cfb_font_header.py
  15. --zephyr-base ${ZEPHYR_BASE}
  16. --input ${input_file}
  17. --output ${output_file}
  18. --bindir ${CMAKE_BINARY_DIR}
  19. --width ${width}
  20. --height ${height}
  21. ${ARGN} # Extra arguments are passed to gen_cfb_font_header.py
  22. DEPENDS ${source_file}
  23. WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
  24. )
  25. endfunction()
  26. function(generate_cfb_font_for_gen_target
  27. target # The cmake target that depends on the generated file
  28. input_file # The TrueType/OpenType font file or the image file
  29. output_file # The generated header file
  30. width # Width of the CFB font elements in pixels
  31. height # Height of the CFB font elements in pixels
  32. gen_target # The generated file target we depend on
  33. # Any additional arguments are passed on to
  34. # gen_cfb_font_header.py
  35. )
  36. generate_cfb_font(${input_file} ${output_file} ${width} ${height} ${ARGN})
  37. # Ensure 'output_file' is generated before 'target' by creating a
  38. # dependency between the two targets
  39. add_dependencies(${target} ${gen_target})
  40. endfunction()
  41. function(generate_cfb_font_for_target
  42. target # The cmake target that depends on the generated file
  43. input_file # The TrueType/OpenType font file or image file
  44. output_file # The generated header file
  45. width # Width of the CFB font elements in pixels
  46. height # Height of the CFB font elements in pixels
  47. # Any additional arguments are passed on to
  48. # gen_cfb_font_header.py
  49. )
  50. # Ensure 'output_file' is generated before 'target' by creating a
  51. # 'custom_target' for it and setting up a dependency between the two
  52. # targets
  53. # But first create a unique name for the custom target
  54. generate_unique_target_name_from_filename(${output_file} generated_target_name)
  55. add_custom_target(${generated_target_name} DEPENDS ${output_file})
  56. generate_cfb_font_for_gen_target(${target} ${input_file} ${output_file}
  57. ${width} ${height} ${generated_target_name} ${ARGN})
  58. endfunction()