On 10 Feb 2007, at 00:26, [EMAIL PROTECTED] wrote:
I'm writing a GUI-less application and find the need for plugins. Avoiding the pro's and con's of doing so, is it POSSIBLE? If so, how would I go about it? Basically the main application would be a single executable. But I am at a loss to figure out how to build the plugins (with OS X I would just create a Bundle - but I'm not sure how to go about it on Linux).
Trivially easy ... just build and use bundles. The makefile to build a bundle called 'foo' would be: include $(GNUSTEP_MAKEFILES)/common.make BUNDLE_NAME=foo foo_OBJC_FILES=foo.m include $(GNUSTEP_MAKEFILES)/bundle.make _______________________________________________ Discuss-gnustep mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnustep
