Skip to content

Commit da16939

Browse files
committed
Cleanup/rename
1 parent 98ab396 commit da16939

7 files changed

Lines changed: 8 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ cd Overload
7373
```
7474

7575
> [!note]
76-
> Supported actions for `gen_proj.bat` are: `vs2026` (default), `vs2022`, `gmake`, `codelite`
76+
> Officially supported actions for `gen_proj.bat` are: `vs2026` (default), `vs2022`, `gmake`, `codelite`.<br/>
77+
> Refer to [premake's website](https://premake.github.io/docs/Using-Premake) for more information.
7778
7879
### Linux (Clang)
7980
```bash
@@ -84,7 +85,8 @@ make -j$(nproc) # build the project using all available CPU cores
8485
```
8586

8687
> [!note]
87-
> Supported actions for `gen_proj.sh` are: `gmake` (default), `codelite`
88+
> Officially supported actions for `gen_proj.sh` are: `gmake` (default), `codelite`.<br/>
89+
> Refer to [premake's website](https://premake.github.io/docs/Using-Premake) for more information.
8890
8991
# Architecture
9092
Overload is divided into 11 modules: 9 libraries (SDK), and 2 executables (Applications).

Scripts/Linux/Build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CONFIG_LOWER=$(echo "$CONFIGURATION" | tr '[:upper:]' '[:lower:]')
88

99
# Generate project files
1010
pushd "$(dirname "$0")" > /dev/null
11-
./RunPremake5.sh
11+
./GenerateProjects.sh
1212
popd > /dev/null
1313

1414
# Build the solution

Scripts/Windows/Build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set "CONFIGURATION=%~1"
66

77
:: Generate the projects
88
pushd "%~dp0"
9-
call .\RunPremake5.bat vs2022 %CONFIGURATION%
9+
call .\GenerateProjects.bat vs2022 %CONFIGURATION%
1010
popd
1111

1212
:: Initialize variables

gen_proj.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
22

3-
call "%~dp0\Scripts\Windows\RunPremake5.bat" %*
3+
call "%~dp0\Scripts\Windows\GenerateProjects.bat" %*
44

55
exit /b %errorlevel%

gen_proj.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
"$(dirname "$0")/Scripts/Linux/RunPremake5.sh" "$@"
3+
"$(dirname "$0")/Scripts/Linux/GenerateProjects.sh" "$@"

0 commit comments

Comments
 (0)