From 9090e805070f4117aeff86a6266879f4d205723a Mon Sep 17 00:00:00 2001 From: briaguya <70942617+briaguya-ai@users.noreply.github.com> Date: Sat, 27 Sep 2025 12:35:46 -0400 Subject: [PATCH] temporarily force `BUILD_REMOTE_CONTROL` on --- soh/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/soh/CMakeLists.txt b/soh/CMakeLists.txt index 4be8f505b..82bb6a15e 100644 --- a/soh/CMakeLists.txt +++ b/soh/CMakeLists.txt @@ -318,7 +318,8 @@ if (BUILD_REMOTE_CONTROL) find_package(SDL2_net) if(NOT SDL2_net_FOUND) - message(STATUS "SDL2_net not found (it's possible the version installed is too old). Disabling BUILD_REMOTE_CONTROL.") + # todo: make archi optional so this can build with BUILD_REMOTE_CONTROL off + message(FATAL_ERROR "SDL2_net not found (it's possible the version installed is too old).") set(BUILD_REMOTE_CONTROL 0) else() set(SDL2-NET-INCLUDE ${SDL_NET_INCLUDE_DIRS}) @@ -337,7 +338,8 @@ if (BUILD_REMOTE_CONTROL) find_package(OpenSSL) if(NOT OPENSSL_FOUND) - message(STATUS "OpenSSL not found (it's possible the version installed is too old). Disabling BUILD_REMOTE_CONTROL.") + # todo: make archi optional so this can build with BUILD_REMOTE_CONTROL off + message(FATAL_ERROR "OpenSSL not found (it's possible the version installed is too old).") set(BUILD_REMOTE_CONTROL 0) endif()