duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

CMakeLists.txt (393B)


      1 set(SRCS
      2   include/freesurround_decoder.h
      3   src/channelmaps.cpp
      4   src/freesurround_decoder.cpp
      5 )
      6 
      7 add_library(freesurround ${SRCS})
      8 target_include_directories(freesurround PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include" "${CMAKE_CURRENT_SOURCE_DIR}/src")
      9 target_include_directories(freesurround INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/include")
     10 target_link_libraries(freesurround PUBLIC kissfft)