Re: Changes I've been thinking of...

2009-10-13 Thread Richard Frith-Macdonald
On 12 Oct 2009, at 23:21, Riccardo Mottola wrote: Hi, Germán Arias wrote: El lun, 12-10-2009 a las 19:33 +0200, Michael Thaler escribió: But so far my experiences weren't that great. I tried to create a project with project center. No icons are shown at all, so Project Center is not

Re: Changes I've been thinking of...

2009-10-13 Thread Derek Fawcus
On Mon, Oct 12, 2009 at 07:33:19PM +0200, Michael Thaler wrote: Because of lack of developer resources. Browser is a huge and complex project by itself. Second, it's really hard to implement such complex project as web browser that based on incomplete and buggy application kit. You don't

Re: Changes I've been thinking of...

2009-10-13 Thread h...@computer.org
On 13 Okt., 10:34, Derek Fawcus dfaw...@cisco.com wrote: On Mon, Oct 12, 2009 at 07:33:19PM +0200, Michael Thaler wrote: Because of lack of developer resources. Browser is a huge and complex project by itself. Second, it's really hard to implement such complex project as web browser that

how to compile a .m

2009-10-13 Thread Jean-Loïc Mauduy
Hi everyone! I am new to GNUstep and Objective C and some things seem difficult to understand for me...I hope you can help me. Precision : I'm on Windows. After installing the thing, I tried a simple hello world, so I put this code in a hello.h : #import stdio.h int main( int argc, const char

Re: how to compile a .m

2009-10-13 Thread Stef Bidi
You'll need a GNUmakefile. Check this link for a tutorial: http://www.gnustep.it/nicola/Tutorials/WritingMakefiles/ For your simple example I would say: include $(GNUSTEP_MAKEFILES)/common.make TOOL_NAME = test test_OBJC_FILES = hello.m include $(GNUSTEP_MAKEFILES)/tool.make Don't forget to

Re: how to compile a .m

2009-10-13 Thread Markus Hitter
Am 14.10.2009 um 01:30 schrieb Jean-Loïc Mauduy: I tried a simple hello world, so I put this code in a hello.h : That's hello.m? and now, how do I compile? Use an Obj-C aware compiler, then proceed the same way you do with plain C. You'll soon want to include at least the basic

Re: how to compile a .m

2009-10-13 Thread Jamie Ramone
On Tue, Oct 13, 2009 at 8:30 PM, Jean-Loïc Mauduy zhor...@gmail.com wrote: Hi everyone! I am new to GNUstep and Objective C and some things seem difficult to understand for me...I hope you can help me. Precision : I'm on Windows. Welcome! After installing the thing, I tried a simple hello