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.
20 lines
419 B
Prolog
20 lines
419 B
Prolog
8 years ago
|
QT += core
|
||
|
QT -= gui
|
||
|
|
||
|
CONFIG += c++11
|
||
|
|
||
|
TARGET = eetsend
|
||
|
CONFIG += console
|
||
|
CONFIG -= app_bundle
|
||
|
|
||
|
TEMPLATE = app
|
||
|
|
||
|
SOURCES += main.cpp
|
||
|
|
||
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../libEet/release/ -lEetCpp
|
||
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../libEet/debug/ -lEetCpp
|
||
|
else:unix: LIBS += -L$$OUT_PWD/../libEet/ -lEetCpp
|
||
|
|
||
|
INCLUDEPATH += $$PWD/../libEet
|
||
|
DEPENDPATH += $$PWD/../libEet
|