http://www.gnustep.org/developers/documentation.html#minitutorials
and any questions you have, ask on [email protected]
On Dec 8, 2005, at 2:22 PM, Johnson, Derrick wrote:
Never mind..... got it to work after checking your FAQ.... sorry about that.
very cool stuff.
-----Original Message-----
From: Johnson, Derrick
Sent: Thursday, December 08, 2005 10:32 AM
To: '[EMAIL PROTECTED]'
Subject: Help!
I've installed your "Windows Binaries" package, and the MINGW stuff works fine. With no modifications at all, I was able to (in my home directory) compile this simple program (main.c):
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("\nHello");
return 0;
}
I used this command to compile and produce a working a.exe file:
gcc main.c
So far, everything works perfectly. I run into problems attempting an Objective-C program though:
#import <Foundation.h>
int main(int argc, char *argv[])
{
printf("\nHello");
return 0;
}
[Note that I renamed the file to main.m before recompiling.]
The problem is that the compiler could not find Foundation.h. I also tried #import <Foundation/Foundation.h>
I am not an expert on GCC, so any help is appreciated. I was sort of hoping this would work out of the box......
Would love to start using GNUstep on Windows, I just need a little nudge in the right direction. Any help is appreciated, thanks!
_______________________________________________ Gnustep-webmasters mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnustep-webmasters
