#!/bin/sh
|
|
|
|
# This script was designed to be run from Qt Creator through Docker
|
|
|
|
mkdir -p build/debug && \
|
|
cd build/debug && \
|
|
qmake ../../torrent-client-v2.pro -spec linux-g++ CONFIG+=debug CONFIG-=qml_debug CONFIG-=qtquickcompiler && \
|
|
make -j 32
|