Hi,
I'm using c::b from svn (9423) on Ubuntu 12.04. When new src files are added to the project (by other developers), I'd like to be able to auto-update the list of files without doing "Add files recursively" every time. Is it possible?
Thanks,
Erez
There is an undocumented (experimental) feature.
You have to tweak your projectfiles manually, see: http://forums.next.codeblocks.org/index.php/topic,16958.msg115908.html#msg115908
I had to explicitely set the wildcard to "*" (on linux) to cover all filetypes:
<UnitsGlob directory="./" recursive="1" wildcard="*" />
Quote from: jens on November 10, 2013, 09:53:38 AM
There is an undocumented (experimental) feature.
You have to tweak your projectfiles manually, see: http://forums.next.codeblocks.org/index.php/topic,16958.msg115908.html#msg115908
I had to explicitely set the wildcard to "*" (on linux) to cover all filetypes:
<UnitsGlob directory="./" recursive="1" wildcard="*" />
It works well. Thanks!