Commit 23770b9a by Karl Schultz

build: Add ccache option to CMake config

This is totally optional, but lets people build this repo with ccache to improve rebuild speeds. It also can help a great deal on ccache-enabled CI systems like Travis-CI. We build fixed revisions of glslang a lot on Travis, so this will be a big help with CI machine loading.
parent cd57b4ba
......@@ -35,6 +35,14 @@ if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT AND WIN32)
set(CMAKE_INSTALL_PREFIX "install" CACHE STRING "..." FORCE)
endif()
option(USE_CCACHE "Use ccache" OFF)
if(USE_CCACHE)
find_program(CCACHE_FOUND ccache)
if(CCACHE_FOUND)
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
endif(CCACHE_FOUND)
endif()
project(glslang)
# make testing optional
include(CTest)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment