[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: cannot find interface decleration for NSObject...
From: |
Truls Becken |
Subject: |
Re: cannot find interface decleration for NSObject... |
Date: |
Thu, 9 Jul 2009 19:56:36 +0200 |
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