News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

When new files are added to a project

Started by erezz, November 10, 2013, 09:19:18 AM

Previous topic - Next topic

erezz

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

Jenna

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="*" />

erezz

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!