From b036134414852036c1e9116d337c3b4d1cb02569 Mon Sep 17 00:00:00 2001 From: scatterflower Date: Fri, 21 Aug 2020 15:52:23 -0500 Subject: add project comment toggle for verbose network logs --- Attorney_Online.pro | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Attorney_Online.pro') diff --git a/Attorney_Online.pro b/Attorney_Online.pro index d2c20624..b9722b1d 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -15,6 +15,9 @@ HEADERS += $$files($$PWD/include/*.h) LIBS += -L$$PWD/lib +# Uncomment for verbose network logging +# DEFINES += DEBUG_NETWORK + # Uncomment to enable Discord Rich Presence # DEFINES += DISCORD -- cgit From ffbaab5a2ae45291f4eb830d8d7d12275ff916cf Mon Sep 17 00:00:00 2001 From: in1tiate Date: Sat, 12 Dec 2020 06:54:31 -0600 Subject: Add QMake flags for "lib" directory --- Attorney_Online.pro | 1 + 1 file changed, 1 insertion(+) (limited to 'Attorney_Online.pro') diff --git a/Attorney_Online.pro b/Attorney_Online.pro index b9722b1d..1a5f214b 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -14,6 +14,7 @@ SOURCES += $$files($$PWD/src/*.cpp) HEADERS += $$files($$PWD/include/*.h) LIBS += -L$$PWD/lib +QMAKE_LFLAGS += -Wl,-rpath,"'\$$ORIGIN/lib'" # Uncomment for verbose network logging # DEFINES += DEBUG_NETWORK -- cgit From 05dd086fff26f951de41702df19d74767c8f711c Mon Sep 17 00:00:00 2001 From: Skye Deving <76892045+skyedeving@users.noreply.github.com> Date: Sat, 9 Jan 2021 11:59:51 -0600 Subject: Fix segfault in server list without a server selection (#374) Also bumps C++ version to C++17 (C++1z). --- Attorney_Online.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Attorney_Online.pro') diff --git a/Attorney_Online.pro b/Attorney_Online.pro index 1a5f214b..5ee3f402 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -35,7 +35,7 @@ LIBS += -lbassopus macx:LIBS += -framework CoreFoundation -framework Foundation -framework CoreServices -CONFIG += c++14 +CONFIG += c++17 RESOURCES += resources.qrc -- cgit