From 840ea14e8699eaabfd0da4bc92003f593a758212 Mon Sep 17 00:00:00 2001 From: PoorPockets McNewHold <13170204+PoorPocketsMcNewHold@users.noreply.github.com> Date: Sun, 22 Jun 2025 15:12:17 +0200 Subject: [PATCH] Add missing SDL2_net-devel dependencies. (#277) -- Found Threads: TRUE -- Found nlohmann_json: /usr/share/cmake/nlohmann_json/nlohmann_jsonConfig.cmake (found version "3.11.3") -- Found Ogg: /usr/lib64/libogg.so (found version "1.3.5") -- Found Vorbis: /usr/lib64/libvorbis.so (found version "1.3.7") CMake Error at CMakeLists.txt:434 (find_package): By not providing "FindSDL2_net.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "SDL2_net", but CMake did not find one. Could not find a package configuration file provided by "SDL2_net" with any of the following names: SDL2_netConfig.cmake sdl2_net-config.cmake Add the installation prefix of "SDL2_net" to CMAKE_PREFIX_PATH or set "SDL2_net_DIR" to a directory containing one of the above files. If "SDL2_net" provides a separate development package or SDK, be sure it has been installed. -- Configuring incomplete, errors occurred! Co-authored-by: MegaMech --- docs/BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/BUILDING.md b/docs/BUILDING.md index 67888df5c..875479657 100644 --- a/docs/BUILDING.md +++ b/docs/BUILDING.md @@ -99,10 +99,10 @@ pacman -S clang git cmake ninja lsb-release sdl2 libpng libzip nlohmann-json tin #### Fedora ```sh # using gcc -dnf install gcc gcc-c++ git cmake ninja-build lsb_release SDL2-devel libpng-devel libzip-devel libzip-tools nlohmann-json-devel tinyxml2-devel spdlog-devel boost-devel libogg-devel libvorbis-devel +dnf install gcc gcc-c++ git cmake ninja-build lsb_release SDL2-devel SDL2_net-devel libpng-devel libzip-devel libzip-tools nlohmann-json-devel tinyxml2-devel spdlog-devel boost-devel libogg-devel libvorbis-devel # or using clang -dnf install clang git cmake ninja-build lsb_release SDL2-devel libpng-devel libzip-devel libzip-tools nlohmann-json-devel tinyxml2-devel spdlog-devel boost-devel libogg-devel libvorbis-devel +dnf install clang git cmake ninja-build lsb_release SDL2-devel SDL2_net-devel libpng-devel libzip-devel libzip-tools nlohmann-json-devel tinyxml2-devel spdlog-devel boost-devel libogg-devel libvorbis-devel ``` #### openSUSE ```sh