@@ -68,32 +68,25 @@ In a rush? [Get the latest release](https://github.com/Overload-Technologies/Ove
6868``` powershell
6969git clone https://github.com/Overload-Technologies/Overload
7070cd Overload
71- .\gen_proj_win32.bat # generate project files for Visual Studio 2022
72-
73- # (Optional) open the solution in Visual Studio
74- .\Overload.sln
71+ .\gen_proj.bat vs2022 # generate project files for Visual Studio 2022
72+ .\Overload.sln # Open the solution in Visual Studio
7573```
7674
75+ > [ !note]
76+ > Officially supported actions for ` gen_proj.bat ` are: ` vs2022 ` (default), ` gmake ` , ` codelite ` .<br />
77+ > Refer to [ premake's website] ( https://premake.github.io/docs/Using-Premake ) for more information.
78+
7779### Linux (Clang)
7880``` bash
7981git clone https://github.com/Overload-Technologies/Overload
8082cd Overload
81- ./gen_proj_linux.sh # generate Makefiles
82-
83- # (Optional) build the project
84- make
83+ ./gen_proj.sh gmake # generate project files for Makefile
84+ make -j$( nproc) # build the project using all available CPU cores
8585```
8686
87- ### Other Platforms & IDEs
88- ` gen_proj ` scripts can be invoked with an argument to specify the the action to perform.
89- ``` bash
90- # Generating Makefile on Windows
91- .\g en_proj_win32.bat gmake
92-
93- # Generating CodeLite project on Linux
94- ./gen_proj_linux.sh codelite
95- ```
96- * Please refer to [ Premake5's documentation] ( https://premake.github.io/docs/Using-Premake ) to find supported IDEs.*
87+ > [ !note]
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.
9790
9891# Architecture
9992Overload is divided into 11 modules: 9 libraries (SDK), and 2 executables (Applications).
0 commit comments