prakashkommerla wrote:
> Hi
>
> This is prakash , iam basically new to Objective-C , i started
> compiling Objective-C using GNUstep in windows Environment, the thing
> is that when i using command like
>
> $ gcc hello.m its given me errors like
>
> 1.Foundation/Foundation.h : No Such File or Directory,
> 2.error : cannot find interface for NSobject , superclass of ....

Like David said in a different thread yesterday, you want to use make
and a GNUmakefile similar to this;

include $(GNUSTEP_MAKEFILES)/common.make

TOOL_NAME = hello

$(TOOL_NAME)_OBJC_FILES = \
       hello.m

include $(GNUSTEP_MAKEFILES)/tool.make


_______________________________________________
Discuss-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/discuss-gnustep

Reply via email to