ccache.cmake 369 B

12345678910111213
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Use ccache if it is installed, unless the user explicitly disables
  3. # it by setting USE_CCACHE=0.
  4. if(USE_CCACHE STREQUAL "0")
  5. else()
  6. find_program(CCACHE_FOUND ccache)
  7. if(CCACHE_FOUND)
  8. set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
  9. set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
  10. endif()
  11. endif()