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
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/examples/example_temp_monitor/tempmonitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

typedef union {
float value;
u_int8_t bytes[4];
uint8_t bytes[4];
} float_sensor_result;

TempMonitor::TempMonitor(const QString & serialPort, QObject *parent) :
Expand Down
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