From 6a37a9d77a97848337f71332c69da7ca96c1e44a Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 26 Jun 2018 18:43:53 -0700 Subject: [PATCH] Move resources back to root --- app/app.pro | 8 +++++--- app/{gui => }/resources.qrc | 0 2 files changed, 5 insertions(+), 3 deletions(-) rename app/{gui => }/resources.qrc (100%) diff --git a/app/app.pro b/app/app.pro index e744049e..7f547b48 100644 --- a/app/app.pro +++ b/app/app.pro @@ -60,7 +60,8 @@ SOURCES += \ http/nvhttp.cpp \ http/nvpairingmanager.cpp \ streaming/video.c \ - streaming/connection.cpp + streaming/connection.cpp \ + http/computermanager.cpp HEADERS += \ utils.h \ @@ -69,13 +70,14 @@ HEADERS += \ http/identitymanager.h \ http/nvhttp.h \ http/nvpairingmanager.h \ - streaming/streaming.h + streaming/streaming.h \ + http/computermanager.h FORMS += \ gui/mainwindow.ui RESOURCES += \ - gui/resources.qrc + resources.qrc win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../moonlight-common-c/release/ -lmoonlight-common-c else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../moonlight-common-c/debug/ -lmoonlight-common-c diff --git a/app/gui/resources.qrc b/app/resources.qrc similarity index 100% rename from app/gui/resources.qrc rename to app/resources.qrc