Update melonDS to b55eb43

- Not yet sure if it works, only that CMake configures it
This commit is contained in:
Jesse Talavera 2024-07-09 12:37:42 -04:00
parent ba7c30942a
commit 114af80812
2 changed files with 5 additions and 3 deletions

View File

@ -37,7 +37,7 @@ function(fetch_dependency name default_url default_tag)
FetchContent_GetProperties(${name})
endfunction()
fetch_dependency(melonDS "https://github.com/melonDS-emu/melonDS" "d48e5f2")
fetch_dependency(melonDS "https://github.com/melonDS-emu/melonDS" "b55eb43")
fetch_dependency("libretro-common" "https://github.com/libretro/libretro-common.git" "fce57fd")
fetch_dependency("embed-binaries" "https://github.com/andoalon/embed-binaries.git" "21f28ca")
fetch_dependency(glm "https://github.com/g-truc/glm" "33b0eb9")

View File

@ -142,7 +142,8 @@ endif ()
if (HAVE_NETWORKING)
target_sources(melondsds_libretro PRIVATE
${melonDS_SOURCE_DIR}/src/frontend/qt_sdl/LAN_Socket.cpp
${melonDS_SOURCE_DIR}/src/frontend/qt_sdl/Net_Slirp.cpp
${melonDS_SOURCE_DIR}/src/frontend/qt_sdl/Net_Slirp.h
platform/lan.cpp
)
@ -150,7 +151,8 @@ if (HAVE_NETWORKING)
if (HAVE_NETWORKING_DIRECT_MODE)
target_sources(melondsds_libretro PRIVATE
${melonDS_SOURCE_DIR}/src/frontend/qt_sdl/LAN_PCap.cpp
${melonDS_SOURCE_DIR}/src/frontend/qt_sdl/Net_PCap.cpp
${melonDS_SOURCE_DIR}/src/frontend/qt_sdl/Net_PCap.h
)
endif()
endif ()