0

下面主要想通过msbuild编译

#include <stdio.h>

int main (int argc, char *argv[])
{
    char Buffer[2000];
    printf("TEST");
    gets(Buffer);
}

批处理文件调用 msbuild:

C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild main.vcxproj
pause

msbuild 项目文件如下。

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup Label="ProjectConfigurations">
    <ProjectConfiguration Include="Debug|Win32">
      <Configuration>Debug</Configuration>
      <Platform>Win32</Platform>
    </ProjectConfiguration>
    <ProjectConfiguration Include="Release|Win32">
      <Configuration>Release</Configuration>
      <Platform>Win32</Platform>
    </ProjectConfiguration>
  </ItemGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  <ItemGroup>
    <ClCompile Include="main.c" />
  </ItemGroup>
</Project>

到目前为止,整个设置都有效,但我需要找到一个好的资源来帮助我了解有关 msproject 文件的更多信息。我想学习很多东西。我怎样才能:

  • 摆脱“导入”选项并自己定义导入的零件
  • 使用命令行参数编译一组文件...( %param%.c %param%TEST.c ,...)
  • 使用项目文件立即启动程序(%param%Test.exe)
  • 编译多个目标,...发布,调试等
  • 编译后复制:Subproject/release/%param%.obj -> c:\accurateVersion\%param%.obj
  • 重建前清洁
4

1 回答 1

1

有一本很棒的书,里面有很多示例代码来完成你所说的一切。

Microsoft® Build Engine 内部:使用 MSBuild 和 Team Foundation Build

这是您如何调用 clean 然后调用构建目标并让它编译调试和发布配置的方法。C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild main.vcxproj /t:clean;build /p:Configuration=Debug;Release /p:platform=Win32

复制任务:

<ItemGroup>
    <MySourceFiles Include="c:\MySourceTree\**\*.*"/>
</ItemGroup>

<Target Name="CopyFiles">
    <Copy
        SourceFiles="@(MySourceFiles)"
        DestinationFiles="@(MySourceFiles->'c:\MyDestinationTree\%(RecursiveDir)%    (Filename)%(Extension)')"
 />

此链接可能会帮助您解决其他一些问题。

演练:使用 MSBuild 创建 Visual C++ 项目

于 2012-11-17T15:16:58.840 回答