From c060419a4783e242b5c23e46c39b7f4de35ded00 Mon Sep 17 00:00:00 2001 From: Misa Date: Fri, 16 Apr 2021 16:33:12 -0700 Subject: [PATCH] Remove redundant C++ standard sets from CMakeFiles These were introduced in 098fb77611e54a9829428c253c60b2697e77f590 - did Leo not know that they were already there at the top of the file? This does the same thing, except it only sets it for VVVVVV instead of everything (so this wouldn't set it for the third-party dependencies). --- desktop_version/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/desktop_version/CMakeLists.txt b/desktop_version/CMakeLists.txt index 894c1ad1..9eac340f 100644 --- a/desktop_version/CMakeLists.txt +++ b/desktop_version/CMakeLists.txt @@ -240,9 +240,6 @@ if(MSVC) target_compile_options(VVVVVV PRIVATE /wd4244) endif() -set_property(TARGET VVVVVV PROPERTY CXX_STANDARD 98) -set_property(TARGET VVVVVV PROPERTY CXX_EXTENSIONS FALSE) - # Unfortunately, it doesn't seem like distros package LodePNG add_library(lodepng-static STATIC ${PNG_SRC})