From 969a67b974702a62e680da3993924b2345ae2bfc Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Mon, 27 Oct 2025 16:56:37 +0100 Subject: [PATCH] Add webview source file to source files. --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ff122e4e..a4d3bf424 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,6 +51,11 @@ set(SOURCE_FILES src/civetweb/civetweb.c src/webui.c ) + +if (WIN32) + list(APPEND SOURCE_FILES src/webview/win32_wv2.cpp) +endif() + if (APPLE) # enable macos webview enable_language(OBJC)