Author Topic: New template compile and link files  (Read 3275 times)

Offline electrolot

  • Multiple posting newcomer
  • *
  • Posts: 18
New template compile and link files
« 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.