mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
9 lines
211 B
CMake
9 lines
211 B
CMake
macro(wpilib_link_macos_gui target)
|
|
if(APPLE)
|
|
set_target_properties(
|
|
${target}
|
|
PROPERTIES LINK_FLAGS "-framework Metal -framework QuartzCore"
|
|
)
|
|
endif()
|
|
endmacro()
|