ubxproto.pro 663 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. header_files.files = $$HEADERS
  23. header_files.path = $$PREFIX/usr/include
  24. target.path = $$PREFIX/usr/lib
  25. OBJECTS_DIR = .obj
  26. MOC_DIR = .moc
  27. DEPLOYMENT += header_files target
  28. INSTALLS += header_files
  29. INSTALLS += target
  30. win32 {
  31. LIBS += ws2_32
  32. }