Skip to content

Commit

Permalink
macos libusb workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jankae committed Nov 3, 2024
1 parent 48cc389 commit 4dc75c1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@

#include "Util/usbinbuffer.h"

#ifdef Q_OS_MACOS
#include <libusb.h>
#else
#include <libusb-1.0/libusb.h>
#endif
#include <QString>
#include <set>
#include <functional>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
#include "librevnadriver.h"
#include "Util/usbinbuffer.h"

#ifdef Q_OS_MACOS
#include <libusb.h>
#else
#include <libusb-1.0/libusb.h>
#endif
#include <thread>

#include <QQueue>
Expand Down
2 changes: 2 additions & 0 deletions Software/PC_Application/LibreVNA-GUI/Util/usbinbuffer.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#ifndef USBINBUFFER_H
#define USBINBUFFER_H

#include <qglobal.h>

#ifdef Q_OS_MACOS
#include <libusb.h>
#else
Expand Down

0 comments on commit 4dc75c1

Please sign in to comment.