Build several CDT C++ projects from commandline

后端 未结 5 1268
别跟我提以往
别跟我提以往 2020-11-28 20:13

What is the best solution to build several CDT C++ projects from the command line? The projects have references and so it is not possible to just build single projects.

5条回答
  •  温柔的废话
    2020-11-28 21:11

    Pre CDT 6 you could use the JDT's AptBuilder (included with classic Eclipse, for example).

    This lets you build an already configured workspace. So you: checkout your source, configure a workspace which points to the checked-out projects. Your automated build scripts can then update the checkouts and run the AptBuilder without needing to start the GUI.

提交回复
热议问题