I've been searching, but I can't find the documentation explaining
how to include frameworks in your app bundle (third-party
frameworks, for example), so that your user does not have to
install these frameworks. Could someone point me at the correct
documentation/build settings? Thanks.
This
On Aug 18, 2008, at 19:59 , Nick Pilch wrote:
I've been searching, but I can't find the documentation explaining
how to include frameworks in your app bundle (third-party
frameworks, for example), so that your user does not have to install
these frameworks. Could someone point me at the co
example
FRAMEWORK = MyFoo
PREFIX = @executable_path/../Frameworks
gcc
-Wl,-single_module \
$(OBJS) \
$(LDFLAGS) \
-compatibility_version 1.0.0 \
-current_version 1.0.0 \
-install_name $(PREFIX)/$(FRAMEWORK).framework/Versions/$(VERSION)/$(FRAMEWORK)
\
-dynamiclib \
-o $(FRAMEWORK)
export your -
I've been searching, but I can't find the documentation explaining how
to include frameworks in your app bundle (third-party frameworks, for
example), so that your user does not have to install these frameworks.
Could someone point me at the correct documentation/build settings?
Thanks.
_