From c353b3f24ffb40611697565a8fcb5f310b5eedea Mon Sep 17 00:00:00 2001 From: David Skoland Date: Wed, 26 Dec 2018 19:33:18 +0100 Subject: [PATCH] same LIBS for unix and win32 is fine. and RC_ICONS is only relevant for windows --- Attorney_Online.pro | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Attorney_Online.pro b/Attorney_Online.pro index 3695a6e..97236fb 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -7,8 +7,6 @@ QT += core gui multimedia network greaterThan(QT_MAJOR_VERSION, 4): QT += widgets -RC_ICONS = logo.ico - TARGET = Attorney_Online TEMPLATE = app @@ -21,11 +19,10 @@ MOC_DIR = $$PWD/build SOURCES += $$files($$PWD/src/*.cpp) HEADERS += $$files($$PWD/include/*.h) -LIBS += -L$$PWD/lib - -unix:LIBS += -lbass -ldiscord-rpc -win32:LIBS += "bass.dll" -ldiscord-rpc +LIBS += -L$$PWD/lib -lbass -ldiscord-rpc CONFIG += c++11 RESOURCES += resources.qrc + +win32:RC_ICONS = resource/logo.ico