Renamed alterware-master-server to master-server

This commit is contained in:
Rim 2023-12-11 20:36:50 -05:00
parent e06c513bfb
commit 9ad8f70398
3 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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)

View File

@ -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++"