You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
391 B
Prolog
24 lines
391 B
Prolog
QT += core
|
|
QT -= gui
|
|
|
|
CONFIG += c++11
|
|
|
|
TARGET = eetsend
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
SOURCES += main.cpp
|
|
|
|
CONFIG(debug, debug|release) {
|
|
DESTDIR = $$PWD/../bin/debug
|
|
LIBS += -L$$PWD/../bin/debug -lEetCpp
|
|
} else {
|
|
DESTDIR = $$PWD/../bin/release
|
|
LIBS += -L$$PWD/../bin/release -lEetCpp
|
|
}
|
|
|
|
INCLUDEPATH += $$PWD/../libEet
|
|
DEPENDPATH += $$PWD/../libEet
|