Remove stray characters from hardcoded CFLAGS

The additional '>' characters were appended to the compiler option.

Related to #1576.
master
Camilla Löwy ago%!(EXTRA string=6 years)
parent 04f7f55f07
commit 33683ec60e
  1. 4
      src/CMakeLists.txt

@ -108,8 +108,8 @@ else()
# Remove this fallback when removing support for CMake version less than 3.1
target_compile_options(glfw PRIVATE
"$<$<C_COMPILER_ID:AppleClang>:-std=c99>"
"$<$<C_COMPILER_ID:Clang>:-std=c99>>"
"$<$<C_COMPILER_ID:GNU>:-std=c99>>")
"$<$<C_COMPILER_ID:Clang>:-std=c99>"
"$<$<C_COMPILER_ID:GNU>:-std=c99>")
endif()
target_compile_definitions(glfw PRIVATE _GLFW_USE_CONFIG_H)

Loading…
Cancel
Save