Author Topic: When new files are added to a project  (Read 2968 times)

Offline erezz

  • Multiple posting newcomer
  • *
  • Posts: 53
When new files are added to a project
« on: November 10, 2013, 09:19:18 am »
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

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: When new files are added to a project
« Reply #1 on: November 10, 2013, 09:53:38 am »
There is an undocumented (experimental) feature.
You have to tweak your projectfiles manually, see: http://forums.codeblocks.org/index.php/topic,16958.msg115908.html#msg115908

I had to explicitely set the wildcard to "*" (on linux) to cover all filetypes:
Code
<UnitsGlob directory="./" recursive="1" wildcard="*" />

Offline erezz

  • Multiple posting newcomer
  • *
  • Posts: 53
Re: When new files are added to a project
« Reply #2 on: November 10, 2013, 03:18:39 pm »
There is an undocumented (experimental) feature.
You have to tweak your projectfiles manually, see: http://forums.codeblocks.org/index.php/topic,16958.msg115908.html#msg115908

I had to explicitely set the wildcard to "*" (on linux) to cover all filetypes:
Code
<UnitsGlob directory="./" recursive="1" wildcard="*" />

It works well. Thanks!