this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update SDL2 to 2.32.8 (get pipewire errors with earlier versions on arch)

alice c898ba3e 5cdb5192

+7
+7
cmake/sdl.cmake
··· 17 17 18 18 if(WIN32) 19 19 set(HAVE_LIBC TRUE) 20 + # SDL_LIBC must be ON for Windows MSVC builds to link properly 21 + set(SDL_LIBC ON CACHE BOOL "" FORCE) 20 22 endif() 21 23 22 24 if(ANDROID) 23 25 include_directories(${ANDROID_NDK}/sources/android/cpufeatures) 24 26 set(SDL_STATIC_PIC ON CACHE BOOL "" FORCE) 27 + endif() 28 + 29 + # Force SDL2 to use static runtime on MSVC to match TIC-80's runtime settings 30 + if(MSVC) 31 + set(SDL_FORCE_STATIC_VCRT ON CACHE BOOL "" FORCE) 25 32 endif() 26 33 27 34 add_subdirectory(${THIRDPARTY_DIR}/sdl2)