mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-08 10:44:20 -04:00
Build: Fixing transcoder path
This commit is contained in:
parent
4ae0a98336
commit
d5e1d4f003
@ -53,12 +53,12 @@
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="BuildTranscoder" BeforeTargets="BeforeBuild" Condition="'$(SkipTranscoder)' != 'true' And !Exists('$(TranscoderBuild)/$(TranscoderBinary)')">
|
||||
<Exec Command="mkdir -p $(TranscoderBuild) %26%26 cd $(TranscoderBuild) %26%26 cmake $(TranscoderRoot) %26%26 make -j" Condition="'$(IsWindows)' != 'true'" />
|
||||
<Exec Command="(if not exist build mkdir $(TranscoderBuild)) %26%26 cd $(TranscoderBuild) %26%26 cmake $(TranscoderRoot) -G "NMake Makefiles" %26%26 nmake" Condition="'$(IsWindows)' == 'true'" />
|
||||
<Exec Command="mkdir -p build %26%26 cd build %26%26 cmake .. %26%26 make -j" WorkingDirectory="$(TranscoderRoot)" Condition="'$(IsWindows)' != 'true'" />
|
||||
<Exec Command="(if not exist build mkdir build) %26%26 cd build %26%26 cmake .. -G "NMake Makefiles" %26%26 nmake" WorkingDirectory="$(TranscoderRoot)" Condition="'$(IsWindows)' == 'true'" />
|
||||
</Target>
|
||||
|
||||
<ItemGroup Condition="'$(SkipTranscoder)' != 'true'">
|
||||
<None Include="$(TranscoderBuild)/$(TranscoderBinary)">
|
||||
<None Include="$(TranscoderRoot)/build/$(TranscoderBinary)">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
<Visible>false</Visible>
|
||||
</None>
|
||||
|
Loading…
x
Reference in New Issue
Block a user