mirror of
https://github.com/sudoxnym/open-hyperion.git
synced 2026-04-14 19:46:39 +00:00
20 lines
867 B
Bash
20 lines
867 B
Bash
|
|
#!/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)
|