1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-13 08:13:37 +02:00

Remove redundant C++ standard sets from CMakeFiles

These were introduced in 098fb77611 - 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).
This commit is contained in:
Misa 2021-04-16 16:33:12 -07:00 committed by Ethan Lee
parent c41ec551f7
commit c060419a47

View File

@ -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})