[build] Apply a formatter for CMake files (#5973)

This commit is contained in:
Gold856
2023-11-30 19:52:21 -05:00
committed by GitHub
parent 9b8011aa67
commit 4fcf0b25a1
37 changed files with 1496 additions and 896 deletions

View File

@@ -1,5 +1,8 @@
macro(wpilib_link_macos_gui target)
if (APPLE)
set_target_properties(${target} PROPERTIES LINK_FLAGS "-framework Metal -framework QuartzCore")
if(APPLE)
set_target_properties(
${target}
PROPERTIES LINK_FLAGS "-framework Metal -framework QuartzCore"
)
endif()
endmacro()