Merge ca98cb793c63a981a1a4b36e432d70ab25c3754d into 033330367cd179d7b04503027d41afa7514036f4

This commit is contained in:
Herman Semenov 2024-03-10 01:21:19 -07:00 committed by GitHub
commit ba59e793d3
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)