added new screens and getting ready for networking, looking at SDL_net for cross platfrom networking so i dont have to touch windows

This commit is contained in:
2026-01-24 19:12:36 -06:00
parent a698c0eb41
commit 3aaf5021cc
468 changed files with 262023 additions and 59 deletions

View File

@@ -0,0 +1,19 @@
# SDL2_net CMake configuration file:
# This file is meant to be placed in a cmake subfolder of SDL2_net-devel-2.x.y-mingw
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
set(sdl2_net_config_path "${CMAKE_CURRENT_LIST_DIR}/../i686-w64-mingw32/lib/cmake/SDL2_net/sdl2_net-config.cmake")
elseif(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(sdl2_net_config_path "${CMAKE_CURRENT_LIST_DIR}/../x86_64-w64-mingw32/lib/cmake/SDL2_net/sdl2_net-config.cmake")
else("${CMAKE_SIZEOF_VOID_P}" STREQUAL "")
set(SDL2_net_FOUND FALSE)
return()
endif()
if(NOT EXISTS "${sdl2_net_config_path}")
message(WARNING "${sdl2_net_config_path} does not exist: MinGW development package is corrupted")
set(SDL2_net_FOUND FALSE)
return()
endif()
include("${sdl2_net_config_path}")