You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

client.pro 705B

12345678910111213141516171819202122232425262728293031
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2014-02-15T22:13:56
  4. #
  5. #-------------------------------------------------
  6. QT += core network
  7. QT -= gui
  8. TARGET = client
  9. CONFIG += console
  10. CONFIG -= app_bundle
  11. TEMPLATE = app
  12. LIBS += -lptsocket
  13. SOURCES += main.cpp \
  14. mainclass.cpp
  15. HEADERS += mainclass.h
  16. win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../Epimafia/release/ -lEpimafia
  17. else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../Epimafia/debug/ -lEpimafia
  18. else:unix: LIBS += -L$$OUT_PWD/../../Epimafia/ -lEpimafia
  19. INCLUDEPATH += $$PWD/../../Epimafia
  20. DEPENDPATH += $$PWD/../../Epimafia
  21. OTHER_FILES += ../defs.h