diff --git a/CMakeLists.txt b/CMakeLists.txt index 2aa0ed1..b8a4dff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,9 +20,9 @@ endif() # ---- Project settings ---- -if(NOT MSVC) - option(BUILD_SHARED_LIBS "Create shared libraries if ON" YES) -endif() +# XXX if(NOT MSVC) +option(BUILD_SHARED_LIBS "Create shared libraries if ON" YES) +# XXX endif() if(NOT DEFINED CMAKE_CXX_STANDARD) set(CMAKE_CXX_STANDARD 20) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 22195f2..0ea6a09 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -54,7 +54,7 @@ if(NOT TEST_INSTALLED_VERSION) if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU") target_compile_options(Greeter PUBLIC -Wall -Wpedantic -Wextra -Werror) elseif(MSVC) - target_compile_options(Greeter PUBLIC /W4 /WX) + # XXX target_compile_options(Greeter PUBLIC /W4 /WX) target_compile_definitions(GreeterTests PUBLIC DOCTEST_CONFIG_USE_STD_HEADERS) endif() endif()