Skip to content

Commit

Permalink
build(remotery): disable on Windows ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Sep 16, 2021
1 parent eaa39da commit 6e7fdff
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion config/build-bindings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ This script is included in /config/build-definitions.xml.
<condition property="binding.openvr" value="false" else="true"><isset property="build.arch.arm"/></condition>
<property name="binding.opus" value="true"/>
<property name="binding.par" value="true"/>
<property name="binding.remotery" value="true"/>
<condition property="binding.remotery" value="false" else="true">
<and>
<isset property="platform.windows"/>
<isset property="build.arch.arm"/>
</and>
</condition>
<property name="binding.rpmalloc" value="true"/>
<property name="binding.shaderc" value="true"/>
<property name="binding.spvc" value="true"/>
Expand Down

0 comments on commit 6e7fdff

Please sign in to comment.