diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-04-03 18:30:28 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-04-03 18:30:28 -0700 |
commit | de20258aa7b846e7c7e5c7ef5abf9613157cb4a0 (patch) | |
tree | 17a6570c73e2664016ce0ece9d6f14e9e3deb67c /launcher/CMakeLists.txt | |
parent | 41c5e523b294501ca96f0c283fe8e837f01e13a3 (diff) | |
download | PrismLauncher-de20258aa7b846e7c7e5c7ef5abf9613157cb4a0.tar.gz PrismLauncher-de20258aa7b846e7c7e5c7ef5abf9613157cb4a0.tar.bz2 PrismLauncher-de20258aa7b846e7c7e5c7ef5abf9613157cb4a0.zip |
fix: filelink needs network for local socket
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/CMakeLists.txt')
-rw-r--r-- | launcher/CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index 71e54c85..4dbb9e6e 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -1123,15 +1123,13 @@ if(WIN32) add_library(filelink_logic STATIC ${LINKEXE_SOURCES}) target_include_directories(filelink_logic PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(filelink_logic - # systeminfo BuildConfig Qt${QT_VERSION_MAJOR}::Widgets ghcFilesystem::ghc_filesystem ) target_link_libraries(filelink_logic Qt${QT_VERSION_MAJOR}::Core - # Qt${QT_VERSION_MAJOR}::Xml - # Qt${QT_VERSION_MAJOR}::Network + Qt${QT_VERSION_MAJOR}::Network # Qt${QT_VERSION_MAJOR}::Concurrent ${Launcher_QT_LIBS} ) |