How to add Xcode Libraries and Frameworks

I’m having a tough time getting frameworks to add to my Xcode project using CMake. Everything I’ve read, it should be as simple as

target_link_libraries(MY_PLUGIN PUBLIC "-framework CoreAudio -framework CoreMIDI")

I’ve looked across GitHub for examples and it seems like that’s the standard but when I run CMake and generate the Xcode project, the targets do not have the frameworks in the Target > General > Frameworks & Libraries section.

Is there an extra step that I might be missing to get that to work?

check the actual linking command line. it should be there.

You’re totally right. It was there all along. Thanks!