From 7af2dcb5ebb2b88a3233a03bb1bfa28d934c8707 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Tue, 12 May 2026 20:50:49 +0200 Subject: [PATCH] Add CMake install rule for nwadmin --- CMakeLists.txt | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5f327fe --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,28 @@ +################################# +# Project +############## + +################################# +# Dependencies +############## + +################################# +# Compiler Switches +############## + +################################# +# Source Files +############## + +# This is a prebuilt DOS/Windows NetWare administration tool. +# No build step is required. + +################################# +# Install Files +############## + +# Admin-only tool: install into SYS/system, not SYS/public. +install( + FILES nwadmin.exe + DESTINATION ${MARS_NWE_INSTALL_FULL_FILEDIR}/SYS/system +)