21 lines
350 B
Prolog
21 lines
350 B
Prolog
QT += core gui network widgets
|
|
|
|
DESTDIR = $$relative_path($$bin_dir)
|
|
|
|
TARGET = SparrowBot
|
|
TEMPLATE = app
|
|
CONFIG += c++11
|
|
|
|
LIBS += $$relative_path($$lib_dir/libircbot.a)
|
|
INCLUDEPATH += ../ircbot
|
|
|
|
SOURCES = main.cpp \
|
|
regismodule.cpp \
|
|
sparrowmodule.cpp \
|
|
vocab.cpp
|
|
|
|
HEADERS += \
|
|
regismodule.h \
|
|
sparrowmodule.h \
|
|
vocab.h
|