Newer
Older
Import / applications / Photoframe / build-all.sh
@John Ryland John Ryland on 10 Jan 2021 197 bytes make it able to be opened and run from VS
#!/bin/bash
#
# Script to build Photoframe
# By John Ryland
# InvertedLogic 2009-2021
#

sh build-libexif.sh
sh refresh-translations.sh

mkdir -p build
cd build
qmake ..
qmake -tp vc ..
make
cd ..