ubxproto.pro 710 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2014-02-26T14:20:56
  4. #
  5. #-------------------------------------------------
  6. CONFIG -= qt
  7. TARGET = ubxproto
  8. TEMPLATE = lib
  9. DEFINES += UBLOXPROTO_LIBRARY
  10. SOURCES += \
  11. ubx.c
  12. HEADERS +=\
  13. ubxmessage.h \
  14. ubx.h \
  15. portable_endian.h \
  16. ubxaid.h \
  17. ubxcfg.h \
  18. ubxlog.h \
  19. ubxmon.h \
  20. ubxrxm.h \
  21. ubxutils.h
  22. OBJECTS_DIR = .obj
  23. MOC_DIR = .moc
  24. linux|linux-g++ {
  25. header_files.files = $$HEADERS
  26. header_files.path = $$PREFIX/usr/include
  27. target.path = $$PREFIX/usr/lib
  28. DEPLOYMENT += header_files target
  29. INSTALLS += header_files
  30. INSTALLS += target
  31. }
  32. win32 {
  33. LIBS += -lws2_32
  34. }