Add Build Note
parent
766cefb62a
commit
09190f86ce
|
@ -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...
|
Loading…
Reference in New Issue