mirror of
https://github.com/libretro/dolphin
synced 2024-11-04 12:33:53 -05:00
7b9375875c
Also cleaned up its source code to support only 5.1 and 7.1 setups.
15 lines
352 B
CMake
15 lines
352 B
CMake
set(CMAKE_CXX_STANDARD 14)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
set(SRCS
|
|
source/ChannelMaps.cpp
|
|
source/KissFFT.cpp
|
|
source/KissFFTR.cpp
|
|
source/FreeSurroundDecoder.cpp
|
|
)
|
|
|
|
add_library(FreeSurround STATIC ${SRCS})
|
|
target_include_directories(FreeSurround PUBLIC include)
|
|
target_compile_options(FreeSurround PRIVATE -w)
|