From 2dbd48efc249a5ad82443a62dfe767b39b688961 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 13 Jun 2023 04:29:41 +0200 Subject: cmake: why the hell would I need MSVC options --- src/CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/CMakeLists.txt') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index fb94b3a..b5ea527 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,8 +1,4 @@ -if(MSVC) - add_compile_options(/W4 /WX) -else() - add_compile_options(-std=c17 -Wpedantic -Wall -Wextra $<$>:-Werror>) -endif() +add_compile_options(-std=c17 -Wpedantic -Wall -Wextra $<$>:-Werror>) # Even w/ _POSIX_C_SOURCE=200809L, we still need accept4, pipe2, execvpe, etc., # which are all _GNU_SOURCE-only (at least for glibc). Try compiling without -- cgit v1.2.3