mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
e24e2a8f8b
* ccache: rename option as not to conflict with submodules * MinGWCross: fix alignment
13 lines
505 B
CMake
Executable File
13 lines
505 B
CMake
Executable File
# buildcache wrapper
|
|
OPTION(CITRA_USE_CCACHE "Use buildcache for compilation" OFF)
|
|
IF(CITRA_USE_CCACHE)
|
|
FIND_PROGRAM(CCACHE buildcache)
|
|
IF (CCACHE)
|
|
MESSAGE(STATUS "Using buildcache found in PATH")
|
|
SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CCACHE})
|
|
SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_LINK ${CCACHE})
|
|
ELSE(CCACHE)
|
|
MESSAGE(WARNING "CITRA_USE_CCACHE enabled, but no buildcache executable found")
|
|
ENDIF(CCACHE)
|
|
ENDIF(CITRA_USE_CCACHE)
|