there is a post here on how to bundle a framework within an application. But in my case this is not application but a plug-in i want to put the framework within.. The "Installation directory" cannot start with @executable_path开发者_JS百科. so i have no clue on how to define the plug-in path
any help would be great, thank you
@loader_path/../Frameworks
dylib @executable_path path issue in a plug-in bundle
Typically, this will depend on the application you're writing the plug-in for, and how it implements plug-ins.
You might be able to get away with using relative paths (ie. '../Frameworks') but I suspect only experimentation will show whether or not that works. ;)
精彩评论