From fc29ec59546b165d598f33c087fc36e73cd1ad6e Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Wed, 6 May 2026 19:49:53 -0400 Subject: [PATCH] =?UTF-8?q?Update=20cmake/wg.cmake=20=E2=80=94=20add=20dis?= =?UTF-8?q?playinfo=20sources=20for=20Windows=20and=20Linux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmake/wg.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/wg.cmake b/cmake/wg.cmake index 7d29163..ef0e0bf 100644 --- a/cmake/wg.cmake +++ b/cmake/wg.cmake @@ -37,9 +37,9 @@ set(ARTEMIS_WG_SOURCES ) if(WIN32) - list(APPEND ARTEMIS_WG_SOURCES src/wg/wgclient_win.cpp) + list(APPEND ARTEMIS_WG_SOURCES src/wg/wgclient_win.cpp src/wg/displayinfo_win.cpp) elseif(UNIX AND NOT APPLE) - list(APPEND ARTEMIS_WG_SOURCES src/wg/wgclient_linux.cpp) + list(APPEND ARTEMIS_WG_SOURCES src/wg/wgclient_linux.cpp src/wg/displayinfo_linux.cpp) elseif(APPLE) # macOS: future — use utun approach from DragonMoonlight if needed message(WARNING "Artemis WireGuard client not yet implemented for macOS")