Skip to content

Commit

Permalink
msbuild: Don't copy gettext binaries if they didn't change
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed May 8, 2024
1 parent 008b579 commit c92e54e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Poedit.Targets
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@
</Target>


<Target Name="CopyGettextTools" AfterTargets="Link">
<Target Name="CopyGettextTools" AfterTargets="Link"
Inputs="@(GettextBinFiles);@(GettextDataFiles)"
Outputs="@(GettextBinFiles->'$(GettextOutDir)\bin\%(Filename)%(Extension)');@(GettextDataFiles->'$(GettextOutDir)\share\%(RecursiveDir)%(Filename)%(Extension)')"
>
<Message Importance="High" Text="Copying gettext tools binaries to $(GettextOutDir)" />
<MakeDir Directories="$(GettextOutDir)\bin" />
<MakeDir Directories="$(GettextOutDir)\share" />
Expand Down

0 comments on commit c92e54e

Please sign in to comment.