Use 'ccache' if available
This commit is contained in:
parent
28e935673c
commit
411d702d7a
@ -36,6 +36,13 @@ project(SFML VERSION 3.0.0)
|
|||||||
|
|
||||||
set(VERSION_IS_RELEASE OFF)
|
set(VERSION_IS_RELEASE OFF)
|
||||||
|
|
||||||
|
# use ccache if available
|
||||||
|
find_program(CCACHE_PROGRAM ccache)
|
||||||
|
if(CCACHE_PROGRAM)
|
||||||
|
message(STATUS "Found ccache in ${CCACHE_PROGRAM}")
|
||||||
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
|
||||||
|
endif()
|
||||||
|
|
||||||
# include the configuration file
|
# include the configuration file
|
||||||
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake)
|
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user