|
|
Header Imports | |
|
|
When you are testing your submissions, you will probably include your headers using double quotes. Once in the MiscKit, your source file will need to find the header file elsewhere--the headers are kept in a different directory than the source. Before submitting your code, you should therefore change to the "<>" style of imports. For example, say you are building a MiscFile object. An include like this #import "MiscFile.h" should be changed to this #import <misckit/MiscFile.h> before you make your submission. The administrator has to make this change if you don't, so please make his life a little easier... If this causes compilation problems--and well it may--look at the existing MiscKit palette and other projects to see how this has been solved using -I flags in the Makefile.preamble and soft links withn the project folder.
| |
|
Questions? Contact our webmaster via email to don@misckit.com. . |
||