mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-03 19:41:45 +02:00
Merge pull request #9903 from shuffle2/msbuild-lang
msbuild: use Build dir for Languages
This commit is contained in:
commit
e9068e108a
@ -16,10 +16,6 @@
|
|||||||
<Import Project="$(VSPropsDir)Base.props" />
|
<Import Project="$(VSPropsDir)Base.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<!--Output directly to binary directory...-->
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutDir>$(BinaryOutputDir)</OutDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<msgfmt Include="po\ar.po" />
|
<msgfmt Include="po\ar.po" />
|
||||||
<msgfmt Include="po\ca.po" />
|
<msgfmt Include="po\ca.po" />
|
||||||
@ -54,4 +50,10 @@
|
|||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
<Import Project="po.targets" />
|
<Import Project="po.targets" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<PoFiles Include="$(OutDir)\**\*.*" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Target Name="AfterBuild" Inputs="@(PoFiles)" Outputs="@(PoFiles -> '$(BinaryOutputDir)%(RecursiveDir)%(Filename)%(Extension)')">
|
||||||
|
<Copy SourceFiles="@(PoFiles)" DestinationFolder="$(BinaryOutputDir)%(RecursiveDir)" />
|
||||||
|
</Target>
|
||||||
</Project>
|
</Project>
|
Loading…
Reference in New Issue
Block a user