From fd535d00a2788976fea96f5b32e66b465688d1ff Mon Sep 17 00:00:00 2001 From: Osyotr Date: Sun, 17 Mar 2024 21:18:45 +0300 Subject: [PATCH] Rename gui_thread_linux.cpp -> gui_thread_qt.cpp and use it in Windows builds Signed-off-by: Osyotr --- platform/CMakeLists.txt | 3 ++- platform/{gui_thread_linux.cpp => gui_thread_qt.cpp} | 0 platform/platform_win.cpp | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) rename platform/{gui_thread_linux.cpp => gui_thread_qt.cpp} (100%) diff --git a/platform/CMakeLists.txt b/platform/CMakeLists.txt index 636e8d40f3..374d916871 100644 --- a/platform/CMakeLists.txt +++ b/platform/CMakeLists.txt @@ -130,6 +130,7 @@ else() # neither iPhone nor Android if (${PLATFORM_WIN}) append(SRC + gui_thread_qt.cpp http_client_curl.cpp http_thread_qt.cpp http_thread_qt.hpp @@ -158,7 +159,7 @@ else() # neither iPhone nor Android ) elseif(${PLATFORM_LINUX}) append(SRC - gui_thread_linux.cpp + gui_thread_qt.cpp http_client_curl.cpp http_thread_qt.cpp http_thread_qt.hpp diff --git a/platform/gui_thread_linux.cpp b/platform/gui_thread_qt.cpp similarity index 100% rename from platform/gui_thread_linux.cpp rename to platform/gui_thread_qt.cpp diff --git a/platform/platform_win.cpp b/platform/platform_win.cpp index 89e552f05a..7aaf339020 100644 --- a/platform/platform_win.cpp +++ b/platform/platform_win.cpp @@ -89,6 +89,8 @@ Platform::Platform() GetTempPathA(MAX_PATH, pathBuf); m_tmpDir = pathBuf; + m_guiThread = std::make_unique(); + LOG(LINFO, ("Resources Directory:", m_resourcesDir)); LOG(LINFO, ("Writable Directory:", m_writableDir)); LOG(LINFO, ("Tmp Directory:", m_tmpDir));