Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. QT += core serialport
  2.  
  3. CONFIG(debug, debug|release) {
  4. SUFFIX_STR = _g
  5. }
  6. else {
  7. SUFFIX_STR =
  8. }
  9. LIBS += -lserialport$${SUFFIX_STR}
  10.  
  11. CONFIG(debug, debug|release) {
  12. LIBS += -lserialport1
  13. INCLUDEPATH += serialport1.h
  14. }
  15. else {
  16. LIBS += -lserialport2
  17. INCLUDEPATH += serialport2.h
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement