[client,sdl] mark SDL3 as no longer experimental

This commit is contained in:
akallabeth
2025-04-30 15:58:37 +02:00
parent b5530e9c24
commit 93a2c02c0a
2 changed files with 1 additions and 5 deletions

View File

@@ -69,9 +69,7 @@ if(NOT WITHOUT_FREERDP_3x_DEPRECATED)
WITH_CLIENT_SDL OFF
)
endif()
cmake_dependent_option(
WITH_CLIENT_SDL3 "[experimental] build experimental SDL3 client" ${SDL3_FOUND} WITH_CLIENT_SDL OFF
)
cmake_dependent_option(WITH_CLIENT_SDL3 "build SDL3 client" ${SDL3_FOUND} WITH_CLIENT_SDL OFF)
if(WITH_CLIENT_SDL2 AND WITH_CLIENT_SDL3)
message("Building both, SDL2 and SDL3 clients, forcing WITH_CLIENT_SDL_VERSIONED=ON")

View File

@@ -1633,8 +1633,6 @@ int main(int argc, char* argv[])
int status = 0;
RDP_CLIENT_ENTRY_POINTS clientEntryPoints = {};
freerdp_client_warn_experimental(argc, argv);
RdpClientEntry(&clientEntryPoints);
std::unique_ptr<sdl_rdp_context, void (*)(sdl_rdp_context*)> sdl_rdp(
reinterpret_cast<sdl_rdp_context*>(freerdp_client_context_new(&clientEntryPoints)),