Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
1e69f94f38ed7f49e02ec69438ce4325cd172c0d
/
.
/
cmake
/
modules
/
LinkMacOSGUI.cmake
blob: f76554eee8f7bec3cb358c18171e8fadc38379ba [
file
] [
log
] [
blame
]
Austin Schuh
1e69f94
2020-11-14 15:06:14 -0800
[
diff
] [
blame^
]
1
macro
(
wpilib_link_macos_gui target
)
2
if
(
APPLE
)
3
set_target_properties
(
$
{
target
}
PROPERTIES LINK_FLAGS
"-framework Metal -framework QuartzCore"
)
4
endif
()
5
endmacro
()