summaryrefslogtreecommitdiffstats
path: root/build.windows.x64.sh
blob: 10c9c0e0c9e79e195e810cb688cf94334c60a9b6 (plain)
1
2
3
4
#!/bin/sh
cmake -B build64 -A x64 || exit 1
cmake --build build64 --config Release --parallel || exit 1
exit 0