From 6c6436ced7c735478e97f169298df66babcc78de Mon Sep 17 00:00:00 2001 From: redtide Date: Tue, 16 May 2023 18:05:05 +0200 Subject: [PATCH] Don't set the minimum Windows version for the library --- cmake/SfizzConfig.cmake | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cmake/SfizzConfig.cmake b/cmake/SfizzConfig.cmake index 9ef9edff..7ce4d8b9 100644 --- a/cmake/SfizzConfig.cmake +++ b/cmake/SfizzConfig.cmake @@ -41,11 +41,6 @@ if(MSVC) add_compile_options("/utf-8") endif() -# Set Windows compatibility level to 7 -if(WIN32) - add_compile_definitions(_WIN32_WINNT=0x601) -endif() - # Define the math constants everywhere if(WIN32) add_compile_definitions(_USE_MATH_DEFINES)