24 lines
583 B
Markdown
24 lines
583 B
Markdown
|
## Requirements
|
||
|
*_NOTE:_ Right now the build proces of some third party libraries have not been converted and may need special tooling*
|
||
|
|
||
|
#### Software
|
||
|
* Premake
|
||
|
* Git
|
||
|
* C++ Compiler
|
||
|
|
||
|
## Windows development workflow
|
||
|
User premake to generate project files for the approperiate build method.
|
||
|
On Windows I assume you'll build with visual studio
|
||
|
|
||
|
```bash
|
||
|
User:~$ premake vs2022
|
||
|
```
|
||
|
|
||
|
## Linux development workflow
|
||
|
Use premake to generate project files for the approperiate build method.
|
||
|
On Linux I assume you'll build with something like make.
|
||
|
|
||
|
```bash
|
||
|
User@Machine:~$ premake gmake2
|
||
|
```
|