From c2685ef76fb5afc11fd1972b4e69f19124ce2b6a Mon Sep 17 00:00:00 2001 From: Kreijstal <rainb@tfwno.gf> Date: Mon, 3 Mar 2025 01:56:30 +0000 Subject: [PATCH] Fix compilation on mingw --- libs/kiplatform/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/kiplatform/CMakeLists.txt b/libs/kiplatform/CMakeLists.txt index 04aa3bd846..29b4ce767d 100644 --- a/libs/kiplatform/CMakeLists.txt +++ b/libs/kiplatform/CMakeLists.txt @@ -132,8 +132,8 @@ if( APPLE ) ) endif() -if( MSVC ) +if( WIN32 ) add_dependencies( kiplatform version_header ) -endif() \ No newline at end of file +endif()