open-hyperion/scripts/build-plugin.sh
2021-01-11 19:18:16 -06:00

20 lines
No EOL
867 B
Bash
Executable file

#!/bin/bash
#-----------------------------------------------------------------------#
# OpenRGB E1.31 Receiver Plugin Build Script #
#-----------------------------------------------------------------------#
set -x
set -e
#-----------------------------------------------------------------------#
# Configure build files with qmake #
# we need to explicitly set the install prefix, as qmake's default is #
# /usr/local for some reason... #
#-----------------------------------------------------------------------#
qmake .
#-----------------------------------------------------------------------#
# Build project and install files into AppDir #
#-----------------------------------------------------------------------#
make -j$(nproc)