- <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Target Name="CMakeContentCopy" AfterTargets="Build">
- <PropertyGroup>
- <PluginFullPath>$(PluginDir)$(PluginArchDir)$(PluginPrefix)$(PluginBaseName).$(PluginExt)</PluginFullPath>
- </PropertyGroup>
- <ItemGroup>
- <Content Condition="Exists('$(PluginFullPath)')" Include="$(PluginFullPath)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <!--<Copy SourceFiles="$(PluginFullPath)" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="true" />-->
- </Target>
- </Project>
|