16 lines
310 B
Prolog
16 lines
310 B
Prolog
QT += core gui network widgets
|
|
|
|
TEMPLATE = subdirs
|
|
CONFIG += ordered c++11
|
|
SUBDIRS = ircbot \
|
|
app
|
|
|
|
app.depends = ircbot
|
|
|
|
#copy res
|
|
copydata.commands = $(COPY_DIR) $$PWD/res $$OUT_PWD
|
|
first.depends = $(first) copydata
|
|
export(first.depends)
|
|
export(copydata.commands)
|
|
QMAKE_EXTRA_TARGETS += first copydata
|