Skip to content

Commit 882b735

Browse files
committed
.pro, should fix compile with the .pro file
1 parent d20c87a commit 882b735

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

QUsb2snes.pro

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ SOURCES += core/adevice.cpp \
7474
devices/retroarchhost.cpp \
7575
devices/emunetworkaccessfactory.cpp \
7676
devices/emunetworkaccessdevice.cpp \
77+
devices/remoteusb2sneswfactory.cpp \
78+
devices/remoteusb2sneswdevice.cpp \
7779
main.cpp \
7880
rommapping/mapping_hirom.c \
7981
rommapping/mapping_lorom.c \
@@ -83,14 +85,17 @@ SOURCES += core/adevice.cpp \
8385
devices/snesclassic.cpp \
8486
core/localstorage.cpp \
8587
core/wsserver.cpp \
86-
core/wsservercommands.cpp
88+
core/wsservercommands.cpp \
89+
client/usb2snesclient.cpp \
8790

8891
HEADERS += core/adevice.h \
8992
core/devicefactory.h \
9093
devices/deviceerror.h \
9194
devices/sd2snesfactory.h \
9295
devices/snesclassicfactory.h \
9396
devices/retroarchfactory.h \
97+
devices/remoteusb2sneswfactory.h \
98+
devices/remoteusb2sneswdevice.h \
9499
ipsparse.h \
95100
devices/luabridge.h \
96101
devices/luabridgedevice.h \
@@ -102,6 +107,7 @@ HEADERS += core/adevice.h \
102107
rommapping/rominfo.h \
103108
devices/sd2snesdevice.h \
104109
devices/snesclassic.h \
110+
client/usb2snesclient.h \
105111
localstorage.h \
106112
core/usb2snes.h \
107113
sqpath.h \

devices/remoteusb2sneswfactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Q_LOGGING_CATEGORY(log_remoteusb2snes, "Remote factory")
55
#define sInfo() qCInfo(log_remoteusb2snes)
66

77
#include "remoteusb2sneswfactory.h"
8-
#include "devices/remoteusb2sneswdevice.h"
8+
#include "remoteusb2sneswdevice.h"
99

1010

1111
RemoteUsb2SnesWFactory::RemoteUsb2SnesWFactory(QObject *parent)

devices/remoteusb2sneswfactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define REMOTEUSB2SNESWFACTORY_H
33

44
#include <devicefactory.h>
5-
#include "client/usb2snesclient.h"
5+
#include "../client/usb2snesclient.h"
66

77
class RemoteUsb2SnesWFactory : public DeviceFactory
88
{

ui/appui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "../devices/sd2snesfactory.h"
2727
#include "../devices/retroarchfactory.h"
2828
#include "../devices/emunetworkaccessfactory.h"
29-
#include "devices/remoteusb2sneswfactory.h"
29+
#include "../devices/remoteusb2sneswfactory.h"
3030
#include "ui/systraywidget.h"
3131

3232
#include <QMenu>

0 commit comments

Comments
 (0)