Compiling C++Builder project on command line

前端 未结 3 1646
离开以前
离开以前 2021-01-12 04:20

Is there a way to compile a C++Builder project (a specific build configuration) from the command line?

Something like:

CommandToBuild ProjectNameToBu         


        
3条回答
  •  隐瞒了意图╮
    2021-01-12 04:41

    Use:

    msbuild project.cbproj /p:config=[build configuration]
    

    More specifics can be found in Building a Project Using an MSBuild Command.

提交回复
热议问题