15 lines
466 B
Markdown
15 lines
466 B
Markdown
## Configuration
|
|
This project uses CMake to configure and build. Currently only Win32 is supported.
|
|
```
|
|
cmake -S . -B build
|
|
```
|
|
## Build
|
|
```
|
|
cmake --build build --config Debug
|
|
```
|
|
<!---build either with `build.cmd Debug` or `build.cmd Release`
|
|
Run `build_imgui_lib.cmd` to build imgui dependency
|
|
Both scripts must be run in x64 Native Tools Command Prompt for VS 20xx.
|
|
|
|
You can also build with `jai build.jai - build_exe` or `jai build.jai - build_exe release`--->
|