discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cannot find interface decleration for NSObject...


From: Ingolf Jandt
Subject: Re: cannot find interface decleration for NSObject...
Date: Fri, 10 Jul 2009 00:05:05 +0200

Use gnustep make to compile (and install) your programs, it will sort out the 
paths for you.

Mini tutorial:
http://www.gnustep.it/nicola/Tutorials/WritingMakefiles/index.html

Documentation:
http://www.gnustep.org/resources/documentation/Developer/Make/Manual/make_toc.html

In short: write a file short 'GNUmakefile' file like below and then do "make"

example GNUmakefile for a 'tool' (i.e. without gui)
  include $(GNUSTEP_MAKEFILES)/common.make
  TOOL_NAME = YourToolName
  YourToolName_OBJC_FILES = source.m
  include $(GNUSTEP_MAKEFILES)/tool.make

for a gui app:
  include $(GNUSTEP_MAKEFILES)/common.make
  APP_NAME = YourAppName
  YourAppName_OBJC_FILES = source.m
  include $(GNUSTEP_MAKEFILES)/application.make

-- 
   - Ingolf Jandt -
______________________________________________________
GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT!
Jetzt freischalten unter http://movieflat.web.de





reply via email to

[Prev in Thread] Current Thread [Next in Thread]