anotherim-desktop/plugins/windows-notification/prepare-yolort.sh

15 lines
265 B
Bash
Raw Normal View History

2021-06-19 11:13:39 +00:00
#!/bin/bash
export ORIGINAL_FOLDER=${PWD}
cd ${PWD}/yolort-builder
if [ ! -f bin/cppwinrt.exe ]; then
make CPPWINRT_VERSION=2.0.210122.3 bin/cppwinrt.exe
fi
make originals
make --jobs=$(nproc)
mkdir -p ../yolort
cp -r include ../yolort
cd ${ORIGINAL_FOLDER}