msix-packaging/makemac

11 строки
200 B
Bash
Executable File

#!/bin/bash
# script to build on mac
mkdir .vs
cd .vs
# clean up any old builds of xPlatAppx modules
find . -name *xPlatAppx* -d | xargs rm -r
cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DMACOS=on ..
make