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.

libptsocket.pro 518B

123456789101112131415161718192021222324252627282930
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2013-12-12T17:58:01
  4. #
  5. #-------------------------------------------------
  6. QT += network
  7. QT -= gui
  8. TARGET = libptsocket
  9. TEMPLATE = lib
  10. DEFINES += LIBPTSOCKET_LIBRARY
  11. SOURCES += ptsocket.cpp \
  12. ptserver.cpp
  13. HEADERS += ptsocket.h\
  14. libptsocket_global.h \
  15. ptserver.h
  16. unix:!symbian {
  17. maemo5 {
  18. target.path = /opt/usr/lib
  19. } else {
  20. target.path = /usr/lib
  21. }
  22. INSTALLS += target
  23. }