PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: Martin Foster on April 16, 2012, 04:45:59 PM

Title: FF has problem finding INC files
Post by: Martin Foster on April 16, 2012, 04:45:59 PM
For FF to find my own INC files, I have to specify the full path+name after the #INCLUDE, rather than just the name. As I'm very new to FF, I'm wondering if this is normal or whether I've missed something.

-- Martin
Title: Re: FF has problem finding INC files
Post by: Paul Squires on April 16, 2012, 05:46:19 PM
If your includes are not in the "Release" folder for the project then you need to either a full path or relative path (ie. .\ or ..\) to the file. I always put my Include files in the "modules" folder and access them as
follows:

#Include "..\modules\myinclude.inc"

Title: Re: FF has problem finding INC files
Post by: Martin Foster on April 17, 2012, 03:11:04 AM
OK, thanks for that.

-- Martin