Syntax of Collection.meta

Move the mouse cursor over the blue elements to display more information.

Collection <name> {
  Project <name>, config: <name>
  Exclude <name>, config: <name>
  SubCollection <name>
}

General Notes

Example

Collection AllUnitTests {
  Project "*", config: UnitTest
}
Collection UnitTestLibsWithoutBsp {
  Project "*", config: "UnitTestLib*"
  Exclude "bsp*", config: "*"
}
Collection MySpecialCollection {
  Project Main1, config: Debug
  Project Main2, config: Release
  Project Sub3, config: Debug
  SubCollection UnitTestLibsWithoutBsp
}