mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +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()
|