cmake: install new DOS tools in maintainer builds
All checks were successful
Source release / source-package (push) Successful in 57s

This commit is contained in:
ai
2026-06-01 10:11:15 +00:00
committed by Mario Fetka
parent 2a41480a65
commit b1f8e71ec9

View File

@@ -78,6 +78,15 @@ option(MARS_NWE_INSTALL_DOSUTILS "Install DOS client utilities" ON)
option(MARS_NWE_INSTALL_NEW_DOSUTILS "Install the new/experimental DOS client utilities instead of legacy netold.exe" OFF)
option(MARS_NWE_BUILD_TESTS "Build optional mars_nwe integration tests" OFF)
# Maintainer builds rebuild the DOS tools from source. In that mode install
# the freshly built/new DOS utility set automatically so developers do not have
# to set both MAINTAINER_BUILD and MARS_NWE_INSTALL_NEW_DOSUTILS.
if(MAINTAINER_BUILD AND NOT MARS_NWE_INSTALL_NEW_DOSUTILS)
set(MARS_NWE_INSTALL_NEW_DOSUTILS ON CACHE BOOL
"Install the new/experimental DOS client utilities instead of legacy netold.exe"
FORCE)
endif()
set(MARS_NWE_SMART_ADMIN_GROUP "root" CACHE STRING "Unix group allowed to log in to the SMArT/nwwebui admin interface")