anotherim-desktop/plugins/windows-notification/prepare-yolort.sh
2021-06-19 08:13:39 -03:00

15 lines
265 B
Bash

#!/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}