parent
d72784fa02
commit
9c90ddd5ee
2 changed files with 35 additions and 4 deletions
@ -1,4 +0,0 @@ |
||||
/*! \mainpage Bakara Manual |
||||
<h2>Build</h2> |
||||
<h2>Examples</h2> |
||||
*/ |
@ -0,0 +1,35 @@ |
||||
\mainpage Bakara Manual |
||||
|
||||
## Build |
||||
On windows, make sure you have ms-compiler for C++.<br> |
||||
Then write commands : |
||||
```bash |
||||
git clone https://github.com/anulax/bakara |
||||
git submodule init |
||||
git submodule update |
||||
.\vendor\premake5 vs2022 |
||||
dotnet build |
||||
dotnet run |
||||
``` |
||||
Or use vs2022 to build your project. |
||||
|
||||
--- |
||||
On linux (if you don't have premake5, install it with your distro's packet manager). You have two env variable to change build proccess : |
||||
|
||||
| Name | Value | |
||||
| ----------- | ----------- | |
||||
| autoexec | 0/1 | |
||||
| clearbin | 0/1 | |
||||
|
||||
Then write commands : |
||||
|
||||
```bash |
||||
git clone https://github.com/anulax/bakara |
||||
git submodule init |
||||
git submodule update |
||||
(export clearbin=1 autoexec=1) |
||||
./build.sh config=release |
||||
``` |
||||
--- |
||||
## Tuto |
||||
(to do) |
Loading…
Reference in New Issue