mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 16:18:56 +02:00
use newer sdl2, make bigger stack
This commit is contained in:
parent
30dd3fa1f3
commit
a9845aa570
3 changed files with 8 additions and 7 deletions
9
externals/cpmfile.json
vendored
9
externals/cpmfile.json
vendored
|
|
@ -192,11 +192,14 @@
|
|||
},
|
||||
"sdl2_ps4": {
|
||||
"package": "SDL2",
|
||||
"repo": "xinitrcn1/SDL",
|
||||
"sha": "f577141fc4",
|
||||
"repo": "libsdl-org/SDL",
|
||||
"sha": "0c7042477a",
|
||||
"key": "ps4",
|
||||
"bundled": true,
|
||||
"skip_updates": true
|
||||
"skip_updates": true,
|
||||
"patches": [
|
||||
"0001-ps4.patch"
|
||||
]
|
||||
},
|
||||
"moltenvk": {
|
||||
"repo": "V380-Ori/Ryujinx.MoltenVK",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
namespace Common {
|
||||
|
||||
#ifdef __OPENORBIS__
|
||||
constexpr size_t DEFAULT_STACK_SIZE = 128 * 4096;
|
||||
constexpr size_t DEFAULT_STACK_SIZE = 256 * 4096;
|
||||
#else
|
||||
constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096;
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -39,9 +39,7 @@ target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads)
|
|||
|
||||
create_resource("../../dist/eden.bmp" "yuzu_cmd/yuzu_icon.h" "yuzu_icon")
|
||||
target_include_directories(yuzu-cmd PRIVATE ${RESOURCES_DIR})
|
||||
|
||||
target_include_directories(yuzu-cmd PRIVATE ${CMAKE_SYSROOT}/include/SDL2)
|
||||
target_link_libraries(yuzu-cmd PRIVATE SDL2)
|
||||
target_link_libraries(yuzu-cmd PRIVATE SDL2::SDL2)
|
||||
|
||||
if(UNIX AND NOT APPLE)
|
||||
install(TARGETS yuzu-cmd)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue