Search code examples
c++visual-studioincredibuild

IncrediBuild configure build order


I have a solution with multiple projects in it. From those numerous projects some depend on the Libs projects and the test projects depend on the code, obviously.

How do I configure IncrediBuild to build Libs first, then build code and only then proceed to building tests?

I have:

  • Microsoft Visual Studio Professional 2017 Version 15.9.40
  • IncrediBuild Version 9.5.0 (build 3385)

Solution

  • I opened Project -> Project Dependencies... went over every project and configured the code to depend on Libs and Tests to depend on the code projects and now they are built in the correct order and I don't have to go over every Lib and build/rebuid it every time I pull a minute change in it from the repository.

    In the end the answer wasn't related to IncrediBuild at all, just Visual Studio functionality.