From 95d42cb40afdd6c7c775692326586936d0ef2453 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sun, 24 May 2026 17:51:50 +0100 Subject: [PATCH] docker: Remove now-redundant CMake options from azahar-room Dockerfile --- docker/azahar-room/Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docker/azahar-room/Dockerfile b/docker/azahar-room/Dockerfile index 9a5f07820..40a15c3ee 100644 --- a/docker/azahar-room/Dockerfile +++ b/docker/azahar-room/Dockerfile @@ -12,13 +12,7 @@ RUN mkdir builddir && cd builddir && \ -DENABLE_GDBSTUB=OFF \ -DENABLE_TESTS=OFF \ -DENABLE_ROOM=ON \ - -DENABLE_ROOM_STANDALONE=ON \ - -DENABLE_OPENGL=OFF $( : "TODO: Can we disable these automatically when there's no frontend?") \ - -DENABLE_VULKAN=OFF \ - -DENABLE_SDL2=OFF \ - -DENABLE_LIBUSB=OFF \ - -DENABLE_CUBEB=OFF \ - -DENABLE_OPENAL=OFF && \ + -DENABLE_ROOM_STANDALONE=ON && \ ninja && \ mv bin/Release/azahar-room /usr/local/bin/ && \ cd .. && rm -rf builddir