From d3ebb1f6ac66a186d8fef505d28f52e750a46061 Mon Sep 17 00:00:00 2001 From: Robert Beckebans Date: Mon, 31 Mar 2025 10:12:37 +0200 Subject: [PATCH] Exclude rbdmap from retail builds for testing Flatpak --- neo/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/CMakeLists.txt b/neo/CMakeLists.txt index 6612cde2..dfe20529 100644 --- a/neo/CMakeLists.txt +++ b/neo/CMakeLists.txt @@ -425,7 +425,7 @@ add_subdirectory(idlib) # RB: there haven't been requests for a separate map compiler executable by macOS users # and it is ok to not support it until someone also supports TrenchBroomBFG on macOS -if(NOT APPLE) +if(NOT APPLE AND NOT RETAIL) add_subdirectory(tools/compilers) endif()