FBedit #include

General FreeBASIC programming questions.
Post Reply
darwin4ever
Posts: 38
Joined: Feb 03, 2017 22:40

FBedit #include

Post by darwin4ever »

I have several projects which all use the same general.bi.

With FBide that wasn't a problem, the general.bi was located one level higher :
Base dir : _FreeBasic containing general.bi
Project subdir : _Project containing Project.bas (and using general.bi)

In FBedit I can't find a way to compile successfully (without moving general.bi or modifying the include)

What am i overlooking ?

PS: Are FBide and FBedit the only two ?
SARG
Posts: 1765
Joined: May 27, 2005 7:15
Location: FRANCE

Re: FBedit #include

Post by SARG »

darwin4ever wrote:Are FBide and FBedit the only two ?
You can try IUP_FB_EDITOR : https://freebasic.net/forum/viewtopic.php?f=8&t=26030
It's very similar to Fbedit but always maintened...., by VANYA.
badidea
Posts: 2591
Joined: May 24, 2007 22:10
Location: The Netherlands

Re: FBedit #include

Post by badidea »

darwin4ever wrote:PS: Are FBide and FBedit the only two ?
See: FreeBASIC IDEs/Editors

I also use 1 folder for frequently used includes file. E.g:

Code: Select all

#include "../../_code_lib_new_/mouse_v02.bi"
In this case 2 folders up and then 1 down to my code library folder.
(I have bad experience with programming tools force you to use projects in a certain way. I prefer simple tools. I don't know about FBedit, I have never used it.)
Post Reply