Speedup compilation on all platforms

This commit is contained in:
Herman Semenov 2024-01-30 12:47:41 +00:00 committed by GitHub
parent b959ff3f06
commit ca98cb793c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -184,6 +184,16 @@ ADD_DEFINITIONS(
-DUSE_SOAPY_SDR=1
)
find_program(CCACHE "ccache")
if(CCACHE)
set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE})
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE})
if(APPLE)
set(CMAKE_OBJCXX_COMPILER_LAUNCHER ${CCACHE})
endif()
set(ENV{CCACHE_SLOPPINESS} pch_defines,time_macros)
endif(CCACHE)
IF (WIN32)
set(wxWidgets_USE_STATIC ON)