mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
6 lines
178 B
CMake
6 lines
178 B
CMake
macro(wpilib_link_macos_gui target)
|
|
if (APPLE)
|
|
set_target_properties(${target} PROPERTIES LINK_FLAGS "-framework Metal -framework QuartzCore")
|
|
endif()
|
|
endmacro()
|