cmake

linux:
    mkdir build
    cd build
    cmake -DCMAKE_BUILD_TYPE=Release ..
    cmake --build .
```

```
windows:
    mkdir build
    cd build
    cmake -A "x64" -T "v142,host=x64" ..
    open the VS project file and build from it
```
mac:
    mkdir build
    cd build
    cmake -GXcode ..
    open the Xcode project file and build from it
```
posted @ 2024-12-27 14:46  Answer_ljq  阅读(13)  评论(0)    收藏  举报