We have 3 new options in \"Frameworks, Libraries, and Embedded Content\" section of Xcode11 Beta for adding libraries.
Xcode Libraries section screenshot
As already stated by @przemyslaw-jablonski, this is similar to what was in XCode 10, but in only one screen (which I personally like!).
Do not embed static frameworks and libraries (linking happens at build time), only shared ones (dynamic linking happens at run time, so they need to be in your bundle).
file frameworkToLink.framework/frameworkToLink will return:
current ar archive: static library, select Do not embedMach-O dynamically linked: shared library, select EmbedNot required if it already has a proper signature (adhoc doesn't count).
codesign -dv frameworkToLink.framework will return:
code object is not signed at all or adhoc: select Embed and signEmbed Without Signing