Compare commits

...

2 commits

Author SHA1 Message Date
Ethan Lee
fbf6a2a185 AOT: Use the IlcSatelliteAssembly group directly
Some checks are pending
CI / Linux (push) Waiting to run
2024-12-12 16:17:24 -05:00
Ethan Lee
331fb6efaf AOT: Fix language files, explicitly link to fnalibs, include console targets file 2024-12-12 16:01:08 -05:00

View file

@ -17,6 +17,28 @@
<ItemGroup>
<RdXmlFile Include="rd.xml" />
<DirectPInvoke Include="SDL3" />
<DirectPInvoke Include="FNA3D" />
<DirectPInvoke Include="FAudio" />
<IlcSatelliteAssembly Include="$(TargetDir)de\RogueLegacy.resources.dll" />
<IlcSatelliteAssembly Include="$(TargetDir)es\RogueLegacy.resources.dll" />
<IlcSatelliteAssembly Include="$(TargetDir)fr\RogueLegacy.resources.dll" />
<IlcSatelliteAssembly Include="$(TargetDir)pl\RogueLegacy.resources.dll" />
<IlcSatelliteAssembly Include="$(TargetDir)pt\RogueLegacy.resources.dll" />
<IlcSatelliteAssembly Include="$(TargetDir)ru\RogueLegacy.resources.dll" />
<IlcSatelliteAssembly Include="$(TargetDir)zh\RogueLegacy.resources.dll" />
</ItemGroup>
<ItemGroup Condition="'$(OS)' != 'Windows_NT'">
<NativeLibrary Include="-lSDL3" />
<NativeLibrary Include="-lFNA3D" />
<NativeLibrary Include="-lFAudio" />
</ItemGroup>
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
<NativeLibrary Include="SDL3.lib" />
<NativeLibrary Include="FNA3D.lib" />
<NativeLibrary Include="FAudio.lib" />
</ItemGroup>
<ItemGroup>
@ -61,4 +83,6 @@
<Name>FNA</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(SolutionDir)NativeAOT_Console.targets" Condition="Exists('$(SolutionDir)NativeAOT_Console.targets')" />
</Project>