cmake: Fix celt cache variables

The FetchDependency calls in cmake/dependencies/celt.cmake use the names
CELT_0061 and CELT_0110. The underscores after CELT are needed here to
match, otherwise it's not possible to override the paths and the CELT0*
variables end up being unused.
This commit is contained in:
Matti Niemenmaa 2023-06-22 13:08:15 +03:00
parent 821e15a4f1
commit 909a3e32ef

View File

@ -75,8 +75,8 @@ if(NOT WIN32)
set(G719_PATH CACHE PATH "Path to G.719 decoder")
set(ATRAC9_PATH CACHE PATH "Path to LibAtrac9")
set(SPEEX_PATH CACHE PATH "Path to SPEEX")
set(CELT0061_PATH CACHE PATH "Path to CELT version 0.6.1")
set(CELT0110_PATH CACHE PATH "Path to CELT version 0.11.0")
set(CELT_0061_PATH CACHE PATH "Path to CELT version 0.6.1")
set(CELT_0110_PATH CACHE PATH "Path to CELT version 0.11.0")
set(LIBAO_PATH CACHE PATH "Path to libao")
set(JANSSON_PATH CACHE PATH "Path to jansson")
endif()