可以将premake配置为复制所需的.dll文件吗?

时间:2019-04-26 15:43:48

标签: project premake

如果我直接维护Visual Studio解决方案,则只需将以下部分添加到项目文件中。我的问题是,有没有办法通过预制件轻松做到这一点?完成后,根据要复制的构建配置,有条件地包含最多三个文件。

<ItemGroup>
  <ContentWithTargetPath Include="$(SolutionDir)\deps\steam_api.dll">
    <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    <TargetPath>steam_api.dll</TargetPath>
  </ContentWithTargetPath>
</ItemGroup>

0 个答案:

没有答案