FF has problem finding INC files

Started by Martin Foster, April 16, 2012, 04:45:59 PM

Previous topic - Next topic

Martin Foster

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

Paul Squires

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"

Paul Squires
PlanetSquires Software

Martin Foster