Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
b39f452ecd1ee9d0e889b977df2bcb32efd8c1c8
/
.
/
third_party
/
allwpilib
/
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
()