Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix windows link issue #18

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[Windows] May fix link with QtXBee lib on win32 platform
  • Loading branch information
ThomArmax committed Jan 8, 2022
commit 6efc066c72c351fe9a0c6a46476452a127673151
4 changes: 2 additions & 2 deletions src/qtxb/qtxb.pri
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD//../../../usr/lib/QtXBee -lQtXBee
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD//../../../usr/lib/QtXBee -lQtXBee
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD//../../../usr/lib/QtXBee -lQtXBee0
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD//../../../usr/lib/QtXBee -lQtXBee0
else:unix: LIBS += -L$$OUT_PWD/../../../usr/lib/QtXBee -lQtXBee

INCLUDEPATH += $$PWD/
Expand Down