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 545B

1234567891011121314151617181920212223242526272829303132
  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. Debug:DEFINES += PT_DEBUG
  14. HEADERS += ptsocket.h\
  15. libptsocket_global.h \
  16. ptserver.h
  17. unix:!symbian {
  18. maemo5 {
  19. target.path = /opt/usr/lib
  20. } else {
  21. target.path = /usr/lib
  22. }
  23. INSTALLS += target
  24. }