From 9ad8f70398e01b6f31b2ae56e860d22ed774ba43 Mon Sep 17 00:00:00 2001 From: Rim Date: Mon, 11 Dec 2023 20:36:50 -0500 Subject: [PATCH] Renamed alterware-master-server to master-server --- .github/workflows/build.yml | 10 +++++----- README.md | 4 ++-- premake5.lua | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d2f5f87..8c297e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,15 +52,15 @@ jobs: uses: ammaraskar/msvc-problem-matcher@master - name: Build ${{matrix.configuration}} ${{matrix.arch}} binaries - run: msbuild /m /v:minimal /p:Configuration=${{matrix.configuration}} /p:Platform=${{matrix.platform}} build/alterware-master.sln + run: msbuild /m /v:minimal /p:Configuration=${{matrix.configuration}} /p:Platform=${{matrix.platform}} build/master-server.sln - name: Upload ${{matrix.configuration}} ${{matrix.arch}} binaries uses: actions/upload-artifact@v3.1.3 with: name: Windows ${{matrix.configuration}} ${{matrix.arch}} binaries path: | - build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master.exe - build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master.pdb + build/bin/${{matrix.arch}}/${{matrix.configuration}}/master-server.exe + build/bin/${{matrix.arch}}/${{matrix.configuration}}/master-server.pdb build-linux: name: Build Linux @@ -117,7 +117,7 @@ jobs: with: name: Linux ${{matrix.configuration}} ${{matrix.arch}} binaries path: | - build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master + build/bin/${{matrix.arch}}/${{matrix.configuration}}/master-server build-macos: name: Build macOS @@ -170,4 +170,4 @@ jobs: with: name: macOS ${{matrix.configuration}} ${{matrix.arch}} binaries path: | - build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master + build/bin/${{matrix.arch}}/${{matrix.configuration}}/master-server diff --git a/README.md b/README.md index fd2d679..de38e70 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![build](https://github.com/alterware/master-server/workflows/Build/badge.svg)](https://github.com/alterware/master-server/actions) -# AlterWare: Master Server +# Master Server This is the master server our clients use. It is based on the DP Master Server (ID Tech) protocol ## Build @@ -13,4 +13,4 @@ This is the master server our clients use. It is based on the DP Master Server ( **IMPORTANT** For Unix systems, you must use Clang to compile this project. You will also be required to install the LLVM C++ Standard library to run this program. If you need to use another compiler, like GCC, you must use the [Mold](https://github.com/rui314/mold) linker. Additionally, you may have to tweak the Premake5.lua script. -I only support a few platforms, for more details see [build.yml](https://github.com/alterware/master-server/blob/master/.github/workflows/build.yml) +I only support a few platforms, for more details see [build.yml](https://github.com/alterware/master-server/blob/master/.github/workflows/build.yml) \ No newline at end of file diff --git a/premake5.lua b/premake5.lua index e455a14..bafd039 100644 --- a/premake5.lua +++ b/premake5.lua @@ -30,8 +30,8 @@ end dependencies.load() -workspace "alterware-master" -startproject "alterware-master" +workspace "master-server" +startproject "master-server" location "./build" objdir "%{wks.location}/obj" targetdir "%{wks.location}/bin/%{cfg.platform}/%{cfg.buildcfg}" @@ -111,7 +111,7 @@ filter "configurations:Debug" defines {"DEBUG", "_DEBUG"} filter {} -project "alterware-master" +project "master-server" kind "ConsoleApp" language "C++"