Add Build Note

akaneyu 2024-03-12 00:52:48 +09:00
parent 766cefb62a
commit 09190f86ce
1 changed files with 29 additions and 0 deletions

29
Build-Note.md Normal file

@ -0,0 +1,29 @@
## Build for Windows
```
mkdir build-x64
cd build-x64
cmake .. -G "Visual Studio 17 2022" -A x64
```
For debug:
```
cmake --build .
```
For release:
```
cmake --build . --config Release
```
## Build for Linux
```
mkdir build-x64
cd build-x64
cmake ..
```
See Windows section for next steps...