From cd4c26beede1a18c5d2cc030b38d5bac8c888c68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Tue, 28 Oct 2025 09:45:25 +0100 Subject: [PATCH] build: disallow litephreeqc build on Windows --- litephreeqc/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/litephreeqc/CMakeLists.txt b/litephreeqc/CMakeLists.txt index 32013d42..70730848 100644 --- a/litephreeqc/CMakeLists.txt +++ b/litephreeqc/CMakeLists.txt @@ -1,3 +1,7 @@ +if (WIN32) + message(FATAL_ERROR "litephreeqc cannot be built on Windows systems.") +endif() + set(LPQC_SOURCE_FILES src/Engine.cpp src/Runner.cpp