Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: electrolot on January 11, 2009, 08:40:43 pm

Title: New template compile and link files
Post by: electrolot on January 11, 2009, 08:40:43 pm
How can I set in template file which file in project should be compiled and linked for selected build target. For example I create two new build targets and I want set which file belongs for first and second build target.
I know that I can use code:
Code
 for (i = 0; i < project.GetFilesCount(); i++)
  {
  project.GetFile(i).compile = true;
  project.GetFile(i).link = true;
  }

but this code select files only for first build target.