Re: [fpc-pascal] Searching recursively for units in a path

2015-12-05 Thread luciano de souza
It works partially. broker.pas declare brookfclhttpappbroker.pas, but it was not found: In fpc.cfg, I tried: "-Fu./Globals/*" The compiler said it is an illegal parameter, so I took off the quotes. -Fu./Globals/*" It was found ./Globals/Seetings/brokers.pas. It's Ok, but when compiling broker

Re: [fpc-pascal] Searching recursively for units in a path

2015-12-05 Thread Michael Van Canneyt
On Sat, 5 Dec 2015, luciano de souza wrote: Hello all, On the commandline or in fpc.cfg, I can include search paths as: fpc test.pp -Fu./Componentes But ./Components has a world of subfolders. So I imagine I could indicates all subfolders as: fpc test.pp -Fu./Componentes/* It does not wor

[fpc-pascal] Searching recursively for units in a path

2015-12-05 Thread luciano de souza
Hello all, On the commandline or in fpc.cfg, I can include search paths as: fpc test.pp -Fu./Componentes But ./Components has a world of subfolders. So I imagine I could indicates all subfolders as: fpc test.pp -Fu./Componentes/* It does not work, so I ask: is there a way to indicates subfolde