Skip to content

Commit

Permalink
revert include directive, add additional include path instead
Browse files Browse the repository at this point in the history
  • Loading branch information
jankae committed Oct 17, 2024
1 parent cfa67eb commit 546a36a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Software/LibreCAL-GUI/LibreCAL-GUI.pro
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SOURCES += \
LIBS += -lusb-1.0
unix:LIBS += -L/usr/lib/
win32:LIBS += -L"$$_PRO_FILE_PWD_" # Github actions placed libusb here
osx:INCPATH += /usr/local/include
osx:INCPATH += /usr/local/include /usr/local/lib
osx:LIBS += -L/usr/local/lib $(shell pkg-config --libs libusb-1.0)

# libusb-1.0.23 shall be extracted in same directory as this file
Expand Down
2 changes: 1 addition & 1 deletion Software/LibreCAL-GUI/Util/usbinbuffer.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef USBINBUFFER_H
#define USBINBUFFER_H

#include <libusb.h>
#include <libusb-1.0/libusb.h>
#include <condition_variable>

#include <QObject>
Expand Down
2 changes: 1 addition & 1 deletion Software/LibreCAL-GUI/usbdevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "Util/usbinbuffer.h"

#include <libusb.h>
#include <libusb-1.0/libusb.h>
#include <QString>
#include <set>
#include <functional>
Expand Down

0 comments on commit 546a36a

Please sign in to comment.